在MFC环境下
CString folder=L"H:\\h264视频"; //存文件夹路径CFileFind finder; //在mfc中有这样一个类叫做CFileFind,if (finder.FindFile(folder))//如果返回值为1表示路径存在,为0则表示不存在{ MessageBox(L"文件夹存在!");}else{ MessageBox(L"文件夹不存在!"); CreateDirectory(folder,NULL);//创建文件夹}
本文共 290 字,大约阅读时间需要 1 分钟。
在MFC环境下
CString folder=L"H:\\h264视频"; //存文件夹路径CFileFind finder; //在mfc中有这样一个类叫做CFileFind,if (finder.FindFile(folder))//如果返回值为1表示路径存在,为0则表示不存在{ MessageBox(L"文件夹存在!");}else{ MessageBox(L"文件夹不存在!"); CreateDirectory(folder,NULL);//创建文件夹}
转载于:https://www.cnblogs.com/weixinhum/p/3916692.html