Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to access information on the logical drives on my computer using C#. How should I accomplish this? Thanks!

share|improve this question

7 Answers

up vote 38 down vote accepted

For most information, you can use the DriveInfo class.

using System;
using System.IO;

class Info {
    public static void Main() {
        DriveInfo[] drives = DriveInfo.GetDrives();
        foreach (DriveInfo drive in drives) {
            //There are more attributes you can use.
            //Check the MSDN link for a complete example.
            Console.WriteLine(drive.Name);
            if (drive.IsReady) Console.WriteLine(drive.TotalSize);
        }
    }
}
share|improve this answer
good job,thanks! – leo Jan 5 '09 at 9:37
1  
What about drive info on a machine other than the local machine? – flipdoubt Jan 5 '09 at 12:13
1  
For network mounted drives this works, reports drive type as "Network". For remote querying, I think you should ask a different question. – Vinko Vrsalovic Jan 5 '09 at 13:19

Note: The answer proposed by TheVillageIdot works very well if the operating system is windows Server 2003 or newer. Win_32 Volume does not exist on windows XP. If you run this in Windows XP an "Invalid Class" error is thrown.

share|improve this answer

Check the DriveInfo Class and see if it contains all the info that you need.

share|improve this answer

What about mounted volumes, where you have no drive letter?

foreach( ManagementObject volume in 
             new ManagementObjectSearcher("Select * from Win32_Volume" ).Get())
{
  if( volume["FreeSpace"] != null )
  {
    Console.WriteLine("{0} = {1} out of {2}",
                  volume["Name"],
                  ulong.Parse(volume["FreeSpace"].ToString()).ToString("#,##0"),
                  ulong.Parse(volume["Capacity"].ToString()).ToString("#,##0"));
  }
}
share|improve this answer
1  
Just found it myself: ''foreach( ManagementObject volume in new ManagementObjectSearcher( "Select * from Win32_Volume" ).Get() ) { if( volume["FreeSpace"] != null ) { Console.WriteLine( "{0} = {1} out of {2}", volume["Name"], ulong.Parse( volume["FreeSpace"].ToString() ).ToString( "#,##0" ), ulong.Parse( volume["Capacity"].ToString() ).ToString( "#,##0" ) ); } } } – Foozinator Sep 6 '09 at 6:09
1  
Please edit your answer and repost the code fragment. – SDX2000 Sep 6 '09 at 6:11

You may use classes in System.IO namespace.

For details read this and this article.

To know more about the System.IO namespace, read Microsoft's documentation here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.