MFC 路徑問題

2021-04-27 04:40:34 字數 434 閱讀 4135

getmodulefilename(null,exefullpath,max_path);     //取當前模組(程式)的全名  

_wsplitpath_s(exefullpath,dr,dpath,file1,file2);     //將名稱按碟符、目錄、檔名拆分  

wcscat_s(dr,dpath);     //合併碟符、目錄

//exefullpath

cstring   strpath(dr);

int  path_count  =strpath.reversefind('//'); 

strpath= strpath.left(path_count);

path_count  =strpath.reversefind('//'); 

strpath= strpath.left(path_count);

MFC瀏覽檔案路徑

vc mfc瀏覽檔案路徑具體 如下 cstring strfilepath t 用來儲存檔案路徑 browseinfo bi char buffer 512 初始化入口引數bi開始 bi.hwndowner null bi.pidlroot null bi.pszdisplayname buffer...

MFC如何開啟檔案路徑

m filedir szfolder 選擇的資料夾路徑 2.查詢路徑下的檔案 cfilefind finder cstring strwildcard m filedir 將傳入的引數賦於變數 strwildcard strwildcard t 構造檔案的全路徑,類似於 c aa bool bwor...

MFC程式得到本身路徑

解析路徑,得到當前執行程式所在目錄 char drive max drive char dir max dir 方法二 得到全路徑 tchar exefullpath max path max path getmodulefilename null,exefullpath,max path 得到程式...