How would I determine if a directory (not a file) existed using C++ in Linux? I tried using the stat() function but it returned positive when a file was found. I only want to find if the inputted string is a directory, not something else.
|
how about something i found here
Or using stat
|
|||||||||||
|
|
According to man(2) stat you can use the S_ISDIR macro on the st_mode field:
Side note, I would recommend using Boost and/or Qt4 to make cross-platform support easier if your software can be viable on other OSs. |
|||
|
|
|
If you can check out the boost filesystem library. It's a great way to deal with this kind of problems in a generic and portable manner. In this case it would suffice to use:
|
|||||||||||||
|
|
The way I understand your question is this: you have a path, say,
|
|||||||||||
|
|
If you want to find out whether a directory exists because you want to do something with it if it does (create a file/directory inside, scan its contents, etc) you should just go ahead and do whatever you want to do, then check whether it failed, and if so, report If you want to behave specially if whatever-it-was failed because a directory didn't exist (for instance, if you want to create a file and all necessary containing directories) you check for I see that one responder has recommended the use of |
|||||
|
stat()should work. How were you using it? – John Bartholomew Feb 12 '11 at 21:47