File/Folder enumeration for C/C++

Started by
0 comments, last by rip-off 16 years ago
I've been looking around Google for some examples on how to enumerate files and folders in C/C++ and haven't found much of anything. I'm not sure how to do this but I was hoping that some of you might have some links. Thanks :)
Advertisement
Boost.Filesystem.

Other than that you're probably talking about OS-specific routines. On Linux for exmaple, one can use opendir(), readdir(). On Windows, I believe the routines are called FindFirstFile() and FindNextFile().

This topic is closed to new replies.

Advertisement