Like the title says, I have a C++ program and the user passes in an argument. I want to validate whether the argument passed is a valid DOS/Windows drive letter (i.e. C:. D:. E:) and that the drive exists on the system. How do I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can get the type of a drive with GetDriveType() - which also tells you if a drive doesn't exist or isn't availble Or the 'correct' way is to enumerate through all the drives |
|||
|
|

try catchblock so if you get an exception I would presume the drive letter was duff or you didn't have permission to access it or some other error – EdChum Apr 10 '12 at 18:21