I would like to access information on the logical drives on my computer using C#. How should I accomplish this? Thanks!
|
For most information, you can use the DriveInfo class.
|
|||||||||||
|
|
Use System.IO.DriveInfo class http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx |
|||
|
|
|
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. |
|||
|
|
|
What about mounted volumes, where you have no drive letter?
|
|||||||||
|
|
You may use classes in For details read this and this article. To know more about the System.IO namespace, read Microsoft's documentation here. |
|||
|
|
|
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: |
|||
|
|