File listing

Started by
0 comments, last by SiCrane 18 years, 5 months ago
C++ has standard functions for reading and writing files, which is handy because now my program can write and read files both in windows and linux. But is there a way to get a list of all the files in a certain folder with standard C++ functions?
Advertisement
No, standard C++ doesn't supply that functionality. Consider using boost::filesystem.

This topic is closed to new replies.

Advertisement