DriveInfo : Drive : File Directory Stream C# Examples


C# Examples » File Directory Stream » Drive »

 

DriveInfo









    
using  System;
using  System.IO;

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

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

                Console.Write("Drive:  ");
                Console.WriteLine(drv.Name);
                
                if  (drv.IsReady)
                {
                        Console.Write("Drive  type:  ");
                        Console.WriteLine(drv.DriveType.ToString());
                        Console.Write("Drive  format:  ");
                        Console.WriteLine(drv.DriveFormat.ToString());
                        Console.Write("Drive  free  space:  ");
                        Console.WriteLine(drv.AvailableFreeSpace.ToString());
                }

        }
}
    
   
  
   



Output

Drive: c:\
Drive type: Fixed
Drive format: NTFS
Drive free space: 33105936384


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo File Directory Stream
» Drive