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);
}

结果

posted @ 2021-03-28 21:43  mohist  阅读(266)  评论(0编辑  收藏  举报