vote up 1 vote down star

Hey how do I in MFC get names of all folders? Any examples or which classes should I look into? Any hints will be really appreciated. All I saw is the CFile, which as far as I have seen (though very very little) doesn't looks like it has the ability to do what I want. So please direct me.

Thanks

flag

46% accept rate

3 Answers

vote up 5 vote down check

Look into CFileFind

There is an old article in DDJ on how to implement a recursive search using CFileFind.

link|flag
2  
Pay close attention to the IsDirectory member function. – Mark Ransom Oct 5 at 15:39
vote up 1 vote down

Look for FindFirstFile in the MFC documentation

link|flag
vote up 1 vote down

A Google search revealed an nice example in: Listing the Files in a Directory

It uses FindFirstFile, FindNextFile, and FindClose.

link|flag
This is the Windows API way to do it, not MFC. – Mark Ransom Oct 5 at 15:39

Your Answer

Get an OpenID
or

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