标签: c++ linux
要获取当前目录,我找到了:
if (!getcwd(cCurrentPath, sizeof(cCurrentPath) / sizeof(char))) { lililog.log(LILILog::error,"Error getting current directory path"); }
但我需要获取正在运行的应用程序的目录。如何制作?
答案 0 :(得分:2)
非常不便携的解决方案:阅读符号链接/proc/self/exe。
/proc/self/exe