本文主要是介绍获取主目录下子文件夹名称,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
//获取子文件夹路径
void get_dirs(CString strPath, vector <CString>& dirs)
{vector<CString> vecFiles = {};//获取文件夹下所有子文件夹名CString strFilePath;//int64 dwDirSize = 0;strFilePath += strPath;strFilePath += "//*.*";CFileFind finder;BOOL bFind = finder.FindFile(strFilePath);while (bFind){bFind = finder.FindNextFile();if (!finder.IsDots()){CString strTempPath = finder.GetFilePath();if (finder.IsDirectory()){//dirs.push_back(strTempPath);// 遍历子文件夹TraverseDir(strTempPath, dirs);}else{continue;}}}finder.Close();
}
void main()
{CString strDir;strDir = ".\\image";vector<CString> vFilePathList;get_dirs(strDir, vFilePathList);
}
这篇关于获取主目录下子文件夹名称的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!