要获得驱动器中的可用空间,请使用C#中的AvailableFreeSpace和TotalFreeSpace属性。
首先,使用DriveInfo设置驱动器的名称-
DriveInfo dInfo = new DriveInfo("D");
假设,您需要找到D驱动器的可用空间-
using System; using System.Linq; using System.IO; public class Demo { public static void Main() { DriveInfo dInfo = new DriveInfo("D"); //获取可用空间 Console.WriteLine(dInfo.AvailableFreeSpace); //获得总可用空间 Console.WriteLine(dInfo.TotalFreeSpace); } }
输出结果
以下是显示D驱动器中可用空间的输出-
722243567912 722243567912