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.
feedback
|
|
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 | |||||||||||
feedback
|
|
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. | ||||
|
feedback
|
|
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. | |||||
|
feedback
|
|
Check out this class which uses the win32 api. Just construct an instance by providing the foldername from which you want the listing then call the getNextFile method to get the next filename from the directory. I think it needs windows.h and stdio.h.
| |||
|
feedback
|
|
I hope this code help you.
| |||
|
feedback
|
| |||
|
feedback
|