grab directory names and file names
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I would like to have my program look into a directory and return back all the filenames within it. Does anyone know what the class and function call does this? Thanks! :)
-
I would like to have my program look into a directory and return back all the filenames within it. Does anyone know what the class and function call does this? Thanks! :)
FindNextFile API function or CFindFile MFC class. Like it or not, I'm right.
-
FindNextFile API function or CFindFile MFC class. Like it or not, I'm right.
Ah, so trivial. I can't believe I missed it :) Thanks!!