1)文件/文件夾是否存在
添加頭文件:
#include
#pragma comment(lib,"Shlwapi.lib")
創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)與策劃設(shè)計(jì),北碚網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)10余年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:北碚等地區(qū)。北碚做網(wǎng)站價(jià)格咨詢:18982081108
PathFileExists(CString strFileName)
2)文件夾
創(chuàng)建文件夾:CreateDirectory()
刪除文件夾:ReMoveDirectory()
3)文件路徑的存儲(chǔ)問(wèn)題
例如:test\\test.cpp文件
如果需要保存在一個(gè)CString類型或者
一個(gè)char數(shù)組,需要添加多一個(gè)\
如下:
char* pdbName = "test\\\test.cpp"
否則運(yùn)行的查看顯示如下:
test\test.cpp
注意:實(shí)際上可以通過(guò)/,來(lái)避免上述問(wèn)題的產(chǎn)生
修改文件名稱
CString strOldName= _T("D:\\old.txt");
CString strNewName= _T("D:\\new.txt");
CFile::Rename(strOldName,strNewName);
需求說(shuō)明:文件夾中的文件一律替換成小寫
void TransferName(CString strDirPath)??
{??
??? CFileFind finder;
??? CString path;
??? path.Format(_T("%s/*.*"),strDirPath);
??? BOOL bWorking = finder.FindFile(path);
??? while(bWorking)
? {
??????? bWorking = finder.FindNextFile();
??????? if(finder.IsDirectory() && !finder.IsDots())
??? {//處理文件夾
??????????? TransferName(finder.GetFilePath()); //遞歸文件夾
??????? }
??????? else
??? {//轉(zhuǎn)換文件名稱大小寫
????? if(!finder.IsDots())
????? {
??????? CString strOldName = finder.GetFilePath();
??????? CString strNewName = finder.GetFilePath();
??????? strNewName.MakeLower();
??????? CFile::Rename(strOldName,strNewName);
????? }
?
??????? }
??? }
}
?
調(diào)用過(guò)程:
??? CString strDir = _T("d:/log");
??? TransferName(strDir);
其中的關(guān)鍵點(diǎn):
if(!finder.IsDots())
表示當(dāng)前的工作目錄