How can I determine the list of files in a directory from inside my C or C++ code?
I'm not allowed to execute the 'ls' command and parse the results from within my program.
|
|
In small and simple tasks I do not use boost, I use dirent.h which is also available for windows:
It is just a small header file and does most of the simple stuff you need without using a big template-based approach like boost(no offence, I like boost!). I googled and found some links here The author of the windows compatibility layer is Toni Ronkko. In Unix it is a standard-header. |
|||||||||||||||
|
|
Unfortunately the C++ standard does not define a standard way of working with files and folders in this way. Since there is no cross platform way, the best cross platform way is to use a library such as the boost filesystem module. Cross platform boost method:
Source from the boost page mentioned above. For Unix/Linux based systems: You can use opendir / readdir / closedir.
Source code from the above man pages. For a windows based systems: you can use the Win32 API FindFirstFile / FindNextFile / FindClose functions.
Source code from the above msdn pages. |
||||
|
|
|
Try boost for x-platform method http://www.boost.org/doc/libs/1_38_0/libs/filesystem/doc/index.htm or just use your OS specific file stuff. |
|||
|
I hope this code help you.
|
|||
|
|
|
|||
|
|
|
Check out this class which uses the win32 api. Just construct an instance by providing the
|
||||
|
|
|
For a C only solution, please check this out. It only requires an extra header: https://github.com/cxong/tinydir
|
|||
|
|
GNU Manual FTW Also, sometimes it's good to go right to the source (pun intended). You can learn a lot by looking at the innards of some of the most common commands in Linux. I've set up a simple mirror of GNU's coreutils on github (for reading). https://github.com/homer6/gnu_coreutils/blob/master/src/ls.c Maybe this doesn't address Windows, but a number of cases of using Unix variants can be had by using these methods. Hope that helps... |
|||
|
|