CString GetCurrPath()
{
char fullpath[256] = {0};
GetModuleFileName(NULL, fullpath, MAX_PATH);
CString cspath(fullpath);
int index = cspath.ReverseFind('\\');
return cspath.Left(index);
}
vc-获取程序当前绝对路径
阅读 155
2022-11-08
CString GetCurrPath()
{
char fullpath[256] = {0};
GetModuleFileName(NULL, fullpath, MAX_PATH);
CString cspath(fullpath);
int index = cspath.ReverseFind('\\');
return cspath.Left(index);
}
相关推荐
精彩评论(0)