如何计算的可用磁盘空间?磁盘空间

2023-09-03 10:14:39 作者:战天傲刃

我工作的一个安装项目中,我需要将文件解压到硬盘。如何计算/查找可用磁盘空间的硬盘上使用C#?

I'm working on an installer project where I need to extract files to the disk. How can I calculate/find the disk space available on hard disk using c#?

推荐答案

http://msdn.microsoft.com/en-us/library/system.io.driveinfo.totalfreespace.aspx

从链接复制

using System;
using System.IO;

class Test
{
    public static void Main()
    {
        DriveInfo[] allDrives = DriveInfo.GetDrives();

        foreach (DriveInfo d in allDrives)
        {
            Console.WriteLine("Drive {0}", d.Name);
            Console.WriteLine("  File type: {0}", d.DriveType);
            if (d.IsReady == true)
            {
                Console.WriteLine("  Volume label: {0}", d.VolumeLabel);
                Console.WriteLine("  File system: {0}", d.DriveFormat);
                Console.WriteLine(
                    "  Available space to current user:{0, 15} bytes", 
                    d.AvailableFreeSpace);

                Console.WriteLine(
                    "  Total available space:          {0, 15} bytes",
                    d.TotalFreeSpace);

                Console.WriteLine(
                    "  Total size of drive:            {0, 15} bytes ",
                    d.TotalSize);
            }
        }
    }
}