file list
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
Hi, How can I get the file list of a directory? like CListbox::dir but directly. thanks
-
Hi, How can I get the file list of a directory? like CListbox::dir but directly. thanks
Use the functions
FindFirstFile()
,FindNextFile()
, andFindClose()
. You'll need to recurse through and directories you come across though.