C# DriveInfo TotalSize
Description
DriveInfo TotalSize
Gets the total size of storage space
on a drive, in bytes.
Syntax
DriveInfo.TotalSize
has the following syntax.
public long TotalSize { get; }
Example
Gets the total size of storage space on a drive, in bytes.
//from w w w .j a v a 2s .c om
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.