您的位置:首页 > 编程语言 > C#

C# 获取磁盘剩余空间

2016-09-14 10:31 441 查看
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;
}


  

调用方法:

string AppPath = Application.StartupPath.ToString();
string volume = AppPath.Substring(0, AppPath.IndexOf(':'));
long freespace = GetHardDiskSpace(volume);


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: