真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MFC第二課文件類型使用技巧

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)前的工作目錄


當(dāng)前名稱:MFC第二課文件類型使用技巧
標(biāo)題路徑:http://weahome.cn/article/pcpggg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部