16,550
社区成员
发帖
与我相关
我的任务
分享
void test(char *src_path)
{
CFileFind file;
int find = file.FindFile(src_path);
//AfxMessageBox(file.GetFileName());
CString filename; int count = 0;
while (find)
{
find = file.FindNextFile();
count++;
}
}