获取当前工作目录可以使用
include<unistd.h>
char *getcwd( char *buffer, int maxlen );
而要找到当前所运行的文件的目录,可以使用
readlink("/proc/self/exe", char *buffer, int maxlen );
获取当前工作目录可以使用
char *getcwd( char *buffer, int maxlen );
而要找到当前所运行的文件的目录,可以使用
readlink("/proc/self/exe", char *buffer, int maxlen );