Given a path, say, /home/xyz/abc/def, I would want to determine if def is a directory or a file. Is there a way of achieving this in my C++ code?
|
|
The following code uses the
Sample runs are shown here:
|
||||||
|
|
|
Use the stat(2) system call. You can use the S_ISREG or S_ISDIR macro on the st_mode field to see if the given path is a file or a directory. The man page tells you about all the other fields. |
|||
|
|
|
|
Alternatively you can use system() function with in built shell command "test".
string test1 = "test -e filename" ;
if(!system(test1))
printf("filename exists") ;
string test2 = "test -d filename" ;
if(!system(test2))
printf("filename is a directory") ;
string test3 = "test -f filename" ;
if(!system(test3))
printf("filename is a normal file") ;
but I am afraid this would work only on linux.. |
||||||||
|
|
|
What about using the boost::filesystem library and its is_directory(const Path& p) ? It may take a while to get familiar with, but not so much. It probably worths the investment, and your code will not be platform specific. |
||
|
|
