In VB you have the DIR(path) command to know the contain of a directory. What is the equivalent in C++???
Thanks
Printable View
In VB you have the DIR(path) command to know the contain of a directory. What is the equivalent in C++???
Thanks
You have to use _findfirst()
and _findnext(), also _findclose()
or
CFileFind class.
Dmitriy, MCSE