- 链接地址:https://blog.csdn.net/sinat_31964903/article/details/111412950#comments_14776807
- 链接标题:C++ 获取程序运行路径_c++获取程序运行路径-CSDN博客
- 所属网站:blog.csdn.net
- 被收藏次数:5993
文章浏览阅读1.2k次。#if WIN32#include <windows.h>std::string getAppDirPath() { char buffer[MAX_PATH]; GetModuleFileName(NULL, buffer, MAX_PATH); *strrchr(buffer, '\\') = 0; return buffer;}#else#include <unistd.h>#include <string.h>#include &l._c++获取程序运行路径
版权声明:本文发布于特牛网址导航 内容均来源于互联网 如有侵权联系删除
标签:c++获取程序运行路径