Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to calculate free disk space?

Tags:

c#

.net

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#?

like image 336
rajshades Avatar asked Jul 09 '10 05:07

rajshades


1 Answers

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

Copied from the link

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);
            }
        }
    }
}
like image 179
Kai Avatar answered Sep 24 '22 13:09

Kai