0
点赞
收藏
分享

微信扫一扫

enumerate all the files in the current directory

CFileFind finder;

BOOL bWorking = finder.FindFile("*.*");

while (bWorking)

{

bWorking = finder.FindNextFile();

cout << (LPCTSTR) finder.GetFileName() << endl;

}

举报

相关推荐

0 条评论