DriveInfo(file.FullName) Name : Drive « File Stream « C# / C Sharp






DriveInfo(file.FullName) Name

   
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);


    }
}

   
    
  








Related examples in the same category

1.Is Drive Ready
2.Drive Format
3.Available Free Space
4.Drive Type
5.Root Directory
6.Check drive free space.
7.Provides access to information on a drive.