获取工程运行路径源代码
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)
原文地址:http://blog.51cto.com/whish/2092255
时间: 2024-10-10 03:13:24