大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
获取工程运行路径源代码
10年积累的成都网站建设、网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有农安免费网站建设让你可以放心的选择与我们合作。
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
}
执行结果:
ocx:会是IE路径安装路径
EXE:exe所在文件夹
获取工程当前路径源代码
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;
}
执行结果:
ocx:会是用户桌面
EXE:运行该exe工程的文件夹路径
debug:(工程名AAA)