{
CFileFind ff
strMusicFolder += _T("\\")
strMusicFolder += _T("*.*")
BOOL res = ff.FindFile(strMusicFolder)
while (res)
{
res = ff.FindNextFile()
if (!ff.IsDirectory() && !ff.IsDots())
{
afxMessageBox(ff.GetFilePath())
}
}
ff.Close()
}
MyFileSearch(dir)//递归访问下一目录这个递归调用是错误的,你应该专门编写一个函数统计文件数目,然后将文件数作为返回值返回,在主函数中调用这个函数获取总数,然后显示
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)