C# DriveInfo Name
Description
DriveInfo Name
Gets the name of a drive, such as C:\.
Syntax
DriveInfo.Name
has the following syntax.
public string Name { get; }
Example
Gets the name of a drive, such as C:\.
using System;//ww w .j av a 2 s . co m
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(d.AvailableFreeSpace);
Console.WriteLine(d.TotalFreeSpace);
Console.WriteLine(d.TotalSize);
}
}
}
}
The code above generates the following result.