On Tue, Feb 24, 2009 at 2:59 PM, John Matthews <[email protected]> wrote: >> Those functions traverse a single directory. You can use >> GetFileAttributes() to determine if each entry if a file or directory. >> If it is a directory, you can recursively (or use a stack) call >> FindFirstFile() again. > Is that C++? In C, there's opendir/readdir etc.
No, that is Win32 API (Thomas should have mentioned...) C++ lacks a standard infrastructure for this type of thing (if you don't count the Posix functions you mentioned). -- Tamas Marki
