一种快速获取当前插件dll文件运行路径的方法
string getCurrentApplicationPath()
{
char szBuff = {0};
int errorCode = 0;
HMODULE hModuleInstance = _AtlBaseModule.GetModuleInstance();
GetModuleFileNameA(hModuleInstance,szBuff, MAX_PATH);
string tempStr = string(szBuff);
tempStr = tempStr.substr(0,tempStr.rfind("\\"));
return tempStr;
}
页:
[1]