Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a simple way to tell if a given path lives on a mapped network drive? Or to tell if a given drive is a mapped network drive?

I hoped they would have a reparse point attribute but GetFileAttributes() returns nothing but a directory flag.

share|improve this question

2 Answers

up vote 3 down vote accepted

GetDriveType is one option.

share|improve this answer
Good, I missed this function. Suprisingly, it works with any kind of path and not only with the mount point root directory. Thanks! – pmezard Aug 19 '10 at 11:41

Did you try GetFileAttributesEx() with GetFileExMaxInfoLevel ?

share|improve this answer
MSDN still only documents GetFileExInfoStandard for WIN32_FILE_ATTRIBUTE_DATA. GetFileExMaxInfoLevel is just an artificial value, all valid values being smaller than that. – peterchen Aug 19 '10 at 6:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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