C# DriveInfo GetDrives
Description
DriveInfo GetDrives
Retrieves the drive names of all
logical drives on a computer.
Syntax
DriveInfo.GetDrives
has the following syntax.
public static DriveInfo[] GetDrives()
Returns
DriveInfo.GetDrives
method returns
Example
Retrieves the drive names of all logical drives on a computer.
// w ww .ja v a 2s .c o m
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(d.AvailableFreeSpace);
Console.WriteLine(d.TotalFreeSpace);
Console.WriteLine(d.TotalSize);
}
}
}
}
The code above generates the following result.