编码过程中有时候会用到获取工程所在路径或者exe所在的路径信息,这里稍微记录下。
获取工程路径
1 char pBuf[MAX_PATH]; //存放路径的变量 2 GetCurrentDirectory(MAX_PATH,pBuf); //获取程序的当前目录
获取可执行程序所在路径
1 std::string GetProgramDir() 2 { 3 char exeFullPath[MAX_PATH]; // Full path 4 std::string strPath = ""; 5 6 GetModuleFileName(NULL,exeFullPath,MAX_PATH); //获取带有可执行文件名路径 7 strPath=(std::string)exeFullPath; 8 int pos = strPath.find_last_of('\', strPath.length()); 9 return strPath.substr(0, pos); // 返回不带有可执行文件名的路径 10 }
参考
https://www.cnblogs.com/pegasus923/archive/2010/11/02/1867584.html