vote up 1 vote down star

Hello everyone! I am making an application in C++ for windows, and one of its prime functions has to be directory and file io (searching, creating, etc). I basically want to be able to recursively search directories, and most of all be able to get the file names in a directory. Then I want to be able to get the directory names in the current directory.

In C#, it is a breeze to implement this functionality, but I am using C++. I tried using the windows API for this, but you know how the WIN API can be a pain in the neck and takes a million lines of code just to get a simple thing done. :P

So what are some good libs for this?

Thanks

flag

76% accept rate

3 Answers

vote up 13 vote down

Try the Boost.Filesystem library.

link|flag
I highly recommend this library. Very easy to use – Maciek Sep 15 at 6:47
vote up 3 vote down

You can use SDK APIs Using FindFirstFile and FindNextFile. They are simple :)

MSDN Example: Listing the Files in a Directory

Apart from Boost suggested by @cjm, if you want to use MFC library:

Recursive file search using C++ MFC

link|flag
vote up 0 vote down

You can use MFC'c CFindFile. WTL has also a port of CFindFile, it's located in atlmisc.h

link|flag

Your Answer

Get an OpenID
or

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