DriveInfo.AvailableFreeSpace : DriveInfo « System.IO « C# / C Sharp by API






DriveInfo.AvailableFreeSpace

 


using System;
using System.IO;

class MainClass {
    static void Main(string[] args) {
        FileInfo file = new FileInfo("c:\\a.txt");

        // Display drive information.
        DriveInfo drv = new DriveInfo(file.FullName);

        Console.Write("Drive: ");
        Console.WriteLine(drv.Name);

        if (drv.IsReady) {
            Console.Write("Drive free space: ");
            Console.WriteLine(drv.AvailableFreeSpace.ToString());
        }
    }
}

   
  








Related examples in the same category

1.new DriveInfo(String fileName)
2.DriveInfo.DriveFormat
3.DriveInfo.DriveType
4.DriveInfo.Name
5.DriveInfo.RootDirectory
6.DriveInfo.TotalFreeSpace
7.DriveInfo.VolumeLabel