How can I get the list of logial drives (C#) on a system as well as their capacity and free space?
|
|
|
||||||
|
|
|
You can retrieve this information with Windows Management Instrumentation (WMI)
Theres more info here about the attribute you can poll http://www.geekpedia.com/tutorial233_Getting-Disk-Drive-Information-using-WMI-and-Csharp.html |
||
|
|
|
|
Their example has more robust, but here's the crux of it
You could also P/Invoke and call the win32 function (or use it if you're in unmanaged code). That only gets a list of the drives however, for information about each one, you would want to use GetDrives as Chris Ballance demonstrates. |
||
|
|
|
|
|
||
|
|
