我如何确定一个远程驱动器有足够的空间供我使用C#在.net上传给定文件?
Answer 1:
有两个可能的解决方案。
调用Win32函数GetDiskFreeSpaceEx。 这里有一个简单的程序:
internal static class Win32 { [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)] internal static extern bool GetDiskFreeSpaceEx(string drive, out long freeBytesForUser, out long totalBytes, out long freeBytes); } class Program { static void Main(string[] args) { long freeBytesForUser; long totalBytes; long freeBytes; if (Win32.GetDiskFreeSpaceEx(@"\\prime\cargohold", out freeBytesForUser, out totalBytes, out freeBytes)) { Console.WriteLine(freeBytesForUser); Console.WriteLine(totalBytes); Console.WriteLine(freeBytes); } } }
使用系统管理界面。 目前在这个岗位描述该另一个答案。 这种方法真的设计用于脚本语言如PowerShell中使用。 它执行了许多绒毛只是为了得到正确的对象。 最终,我怀疑,这种方法归结为调用GetDiskFreeSpaceEx。
任何人在C#中做任何严重的Windows开发最终可能会调用许多Win32函数。 NET框架只是不包括在Win32 API的100%。 任何大型项目将很快发现在那些只能通过Win32 API中的.NET库的空白。 我会得到的Win32包装的.NET的一个的保持,这包括在您的项目。 这会给你几乎所有的Win32 API的即时访问。
Answer 2:
使用WMI
using System.Management;
// Get all the network drives (drivetype=4)
SelectQuery query = new SelectQuery("select Name, VolumeName, FreeSpace from win32_logicaldisk where drivetype=4");
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
foreach (ManagementObject drive in searcher.Get())
{
string Name = (string)drive["Name"];
string VolumeName = (string)drive["VolumeName"];
UInt64 freeSpace = (UInt64)drive["FreeSpace"];
}
基于(被盗) http://www.dreamincode.net/code/snippet1576.htm
Answer 3:
你谈论你的计算机上的网络共享映射到一个逻辑驱动器?
如果是这样你可以使用DriveInfo。
DriveInfo info = new DriveInfo("X:"); info.AvailableFreeSpace;
DriveInfo只能用逻辑驱动器的工作原理,所以如果你只是使用完整的份额(UNC)名称,我不认为上面的代码将工作。
Answer 4:
我不知道如果GetDiskFreeSpaceEx工作在UNC共享,但如果它不使用,否则这里是如何UNC共享安装到logal驱动器:
编辑 GetDiskFreeSpaceEx不UNC共享上工作,使用......然而,这些代码太多精力去删除,并且是方便的,如果你想安装一个UNC共享的代码中的本地驱动器。
public class DriveWrapper
{
[StructLayout(LayoutKind.Sequential)]
public struct NETRESOURCEA
{
public int dwScope;
public int dwType;
public int dwDisplayType;
public int dwUsage;
[MarshalAs(UnmanagedType.LPStr)]
public string lpLocalName;
[MarshalAs(UnmanagedType.LPStr)]
public string lpRemoteName;
[MarshalAs(UnmanagedType.LPStr)]
public string lpComment;
[MarshalAs(UnmanagedType.LPStr)]
public string lpProvider;
public override String ToString()
{
String str = "LocalName: " + lpLocalName + " RemoteName: " + lpRemoteName
+ " Comment: " + lpComment + " lpProvider: " + lpProvider;
return (str);
}
}
[DllImport("mpr.dll")]
public static extern int WNetAddConnection2A(
[MarshalAs(UnmanagedType.LPArray)] NETRESOURCEA[] lpNetResource,
[MarshalAs(UnmanagedType.LPStr)] string lpPassword,
[MarshalAs(UnmanagedType.LPStr)] string UserName,
int dwFlags);
[DllImport("mpr.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
private static extern int WNetCancelConnection2A(
[MarshalAs(UnmanagedType.LPStr)]
string lpName,
int dwFlags,
int fForce
);
public int GetDriveSpace(string shareName, string userName, string password)
{
NETRESOURCEA[] n = new NETRESOURCEA[1];
n[0] = new NETRESOURCEA();
n[0].dwScope = 0;
n[0].dwType = 0;
n[0].dwDisplayType = 0;
n[0].dwUsage = 0;
n[0].dwType = 1;
n[0].lpLocalName = "x:";
n[0].lpRemoteName = shareName;
n[0].lpProvider = null;
int res = WNetAddConnection2A(n, userName, password, 1);
DriveInfo info = new DriveInfo("x:");
int space = info.AvailableFreeSpace;
int err = 0;
err = WNetCancelConnection2A("x:", 0, 1);
return space;
}
}
文章来源: How can I determine if a remote drive has enough space to write a file using C#?