C# 获取磁盘剩余空间

drive.TotalFreeSpace单位为bit,根据须要除以1024
drive同时能够能够获取磁盘分区容量等
//单位MB
public static long GetHardDiskSpace(string str_HardDiskName)
{
long totalSize = 0;
str_HardDiskName = str_HardDiskName + ":\\";
System.IO.DriveInfo[] drives = System.IO.DriveInfo.GetDrives();
foreach (System.IO.DriveInfo drive in drives)
{
if (drive.Name == str_HardDiskName)
{
totalSize = drive.TotalFreeSpace / (1024 * 1024);
}
}
return totalSize;
}

  

调用方法:spa

string AppPath = Application.StartupPath.ToString();
string volume = AppPath.Substring(0, AppPath.IndexOf(':'));
long freespace = GetHardDiskSpace(volume);
相关文章
相关标签/搜索