Possible Duplicate:
How to list physical disks?
What is the "best way" (fastest) C++ way to List physical drives installed on my computer? Is there a boost library to do that?
What is the "best way" (fastest) C++ way to List physical drives installed on my computer? Is there a boost library to do that? |
||||
| show 7 more comments |
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
use
or use
|
|||
|
|
|
One possibility is to use WMI to enumerate the instances of Win32_DiskDrive. |
|||
|
|
GetLogicalDrives(), check out this post stackoverflow.com/questions/286534/… – Krister Andersson Jan 11 '12 at 17:19