Windows库函数获取 可执行程序所在路径
头文件
#include <Windows.h>
函数
函数已经写好了
std::string get_executable_dir_()
{
char path[255] = { 0 };
GetModuleFileName(NULL, path, 255);
(strrchr(path, '\\'))[1] = 0;
return std::string(path);
}
#include <Windows.h>
函数已经写好了
std::string get_executable_dir_()
{
char path[255] = { 0 };
GetModuleFileName(NULL, path, 255);
(strrchr(path, '\\'))[1] = 0;
return std::string(path);
}