獲取工程運(yùn)行路徑源代碼
10年積累的成都網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)經(jīng)驗(yàn),可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先網(wǎng)站設(shè)計(jì)后付款的網(wǎng)站建設(shè)流程,更有農(nóng)安免費(fèi)網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
string GetProgramDir()
{
char exeFullPath[MAX_PATH]; // Full path
string strPath = "";
GetModuleFileName(NULL,exeFullPath,MAX_PATH);
strPath=(string)exeFullPath; // Get full path of the file
int pos = strPath.find_last_of('\\', strPath.length());
return strPath.substr(0, pos); // Return the directory without the file name
}
執(zhí)行結(jié)果:
ocx:會是IE路徑安裝路徑
EXE:exe所在文件夾
獲取工程當(dāng)前路徑源代碼
string GetCurrentDir(const string &path){
string ls_FileName;
LPTSTR lpBuffer;
UINT uSize;
HANDLE hHeap;
uSize=(GetCurrentDirectory(0,NULL))*sizeof(TCHAR);
hHeap=GetProcessHeap();
lpBuffer=(LPSTR)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,uSize);
GetCurrentDirectory(uSize,lpBuffer);
ls_FileName = (string) lpBuffer;
ls_FileName.append(path);
return ls_FileName;
}
執(zhí)行結(jié)果:
ocx:會是用戶桌面
EXE:運(yùn)行該exe工程的文件夾路徑
debug:(工程名AAA)