Skip to content

Instantly share code, notes, and snippets.

@fresky
Last active December 14, 2015 03:39
Show Gist options
  • Save fresky/5022837 to your computer and use it in GitHub Desktop.
Save fresky/5022837 to your computer and use it in GitHub Desktop.
Get Drive Information in C#
foreach (var s in DriveInfo.GetDrives())
{
if (s.IsReady)
{
Console.WriteLine(s.Name);
Console.WriteLine(s.TotalSize);
Console.WriteLine(s.AvailableFreeSpace);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment