Drive information
In this chapter you will learn:
Get drive information
using System;/*from java2 s .c om*/
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());
}
}
}
The code above generates the following result.
Next chapter...
What you will learn in the next chapter:
Home » C# Tutorial » File, Path