I want to enumerate all available drive letters (which aren't already taken) in Windows using VC++.

How can I do this?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

::GetLogicalDrives() returns a list of available (read: used) drives as bits in a mask. This should include mapped network drives. Thus, you can simply walk the bits to find bits that are zero, meaning no drive is present. If in doubt, you can always call ::GetDriveType() with the drive letter + ":\" (":\\" in C code, or _T(":\\") in Unicode-aware terminology, of course), and that should return DRIVE_UNKNOWN or DRIVE_NO_ROOT_DIR if the drive is available.

link|improve this answer
yes, that's easier than GetLogicalDriveStrings! – Alnitak Nov 13 '08 at 8:53
feedback

GetLogicalDriveStrings can get you just the list of currently used drive letters.

GetVolumeInformation can be used to get more information about a specific drive.

link|improve this answer
feedback

The GetLogicalDriveStrings Function is a good starting point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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