91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-07-18 14:02:45 來源:網絡 閱讀:437 作者:fengyuzaitu 欄目:編程語言

1)文件/文件夾是否存在
添加頭文件:
#include <shlwapi.h>
#pragma comment(lib,"Shlwapi.lib")

PathFileExists(CString strFileName)

2)文件夾
創建文件夾:CreateDirectory()
刪除文件夾:ReMoveDirectory()

3)文件路徑的存儲問題
例如:test\\test.cpp文件
如果需要保存在一個CString類型或者
一個char數組,需要添加多一個\
如下:
char* pdbName = "test\\\test.cpp"
否則運行的查看顯示如下:
test\test.cpp

注意:實際上可以通過/,來避免上述問題的產生

修改文件名稱
CString strOldName= _T("D:\\old.txt");
CString strNewName= _T("D:\\new.txt");
CFile::Rename(strOldName,strNewName);

需求說明:文件夾中的文件一律替換成小寫

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
??? {//轉換文件名稱大小寫
????? if(!finder.IsDots())
????? {
??????? CString strOldName = finder.GetFilePath();
??????? CString strNewName = finder.GetFilePath();
??????? strNewName.MakeLower();
??????? CFile::Rename(strOldName,strNewName);
????? }
?
??????? }
??? }
}
?
調用過程:
??? CString strDir = _T("d:/log");
??? TransferName(strDir);
其中的關鍵點:
if(!finder.IsDots())
表示當前的工作目錄

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邵阳市| 克什克腾旗| 田阳县| 安阳县| 汉川市| 郑州市| 汽车| 晋州市| 滨州市| 宝坻区| 彝良县| 老河口市| 高雄县| 盐亭县| 司法| 泰和县| 长沙市| 盐津县| 天水市| 辉县市| 富民县| 曲松县| 博客| 怀柔区| 齐齐哈尔市| 贺州市| 德昌县| 吴忠市| 兴海县| 星座| 富蕴县| 新宾| 宁明县| 三明市| 大洼县| 阿勒泰市| 祁连县| 普安县| 奉化市| 股票| 资溪县|