vote up 3 vote down star

I can't seem to find the _findfirst / findfirst, _findnext / findnext API on gcc for Linux, and would actually rather use the Standard Template Library (STL) for that if it is included there.

Does anyone know what API there is available for listing files in a directory under Linux for C++ (gcc)?

flag

3 Answers

vote up 9 vote down check

Check out the Boost.Filesystem library.

In particular, the basic_directory_iterator.

link|flag
vote up 6 vote down

It's not a C++-style API, but the API you aren't finding (the Linux/Unix correspondent of DOS/Windows-style findfirst/findnext) is opendir/readdir/closedir.

The main advantage of using opendir/readdir/closedir is that you do not need any extra library (it's part of the C library, which you are already using). In fact, the Boost filesystem library uses opendir/readdir/closedir to get the list of files in a directory.

References:

link|flag
vote up 1 vote down

The STL does not, yet, have functions for listing files in a directory. But it does have functions for opening files you are already aware of.

Aside from Boost.Filesystem, there is also STLSoft

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.