vote up 2 vote down star
1

Hi,all: i will get disk information by using c#,what i should do? thanks!

flag

50% accept rate

6 Answers

vote up 12 vote down check

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);
        }
    }
}
link|flag
good job,thanks! – leo Jan 5 '09 at 9:37
What about drive info on a machine other than the local machine? – flipdoubt Jan 5 '09 at 12:13
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
vote up 0 vote down

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.

link|flag
vote up 0 vote down

If by disk information, you mean information about the hard drives, etc:

http://adventures-in-csharp.blogspot.com/2006/09/getting-disk-information-in-c.html

If you mean loading files from the disk:

http://www.c-sharpcorner.com/UploadFile/psingh/ReadafileusingCSharp12032005000755AM/ReadafileusingCSharp.aspx

link|flag
vote up 0 vote down

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

link|flag
vote up 2 vote down

Use System.IO.DriveInfo class http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx

link|flag
vote up 0 vote down

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"));
  }
}
link|flag
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 at 6:09
Please edit your answer and repost the code fragment. – SDX2000 Sep 6 at 6:11

Your Answer

Get an OpenID
or

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