How to check with WINAPI file path is disk or file or directory?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Use GetFileAttributes. Edit: You can also check SHGetFileInfo |
||||
|
See if the path has a drive letter in front of it? All UNC's take the form "\\server\share\file_path" No drive letter. Out of curiousity I looked this up. Based on this MSDN article Naming Files, Paths, and Namespaces, it seems my advice is exactly how it says it should be done. |
||||
|
|
|
Could try FindFirstFile: http://msdn.microsoft.com/en-us/library/aa364418%28v=VS.85%29.aspx Once you have the find data (passed as the 2nd argument to that function):
Also, to see if something is a volume, could try something like:
HTH |
|||||||
|