标签:style 获取 string argc lan char article 函数参数 sys
同CSDN上的 https://blog.csdn.net/Higashino_Keigo/article/details/80489874
C语言获取执行文件(XXX.exe)文件名和目录路径
vc2010编译通过
1 #include<stdio.h> 2 #include<string.h> 3 #include<windows.h> 4 #include<stdlib.h> 5 6 int main(int argc,char *argv[]){ 7 8 printf("%s\n",argv[0]); //用主函数参数自带的 argv[0] 输出路径 9 10 char path[100]; 11 GetModuleFileName(NULL, path, 100); //调用win api 获得路径 12 printf("%s\n",path); 13 14 char *p = strrchr(path,‘\\‘); //截取到最后的"\",之后是XXX.exe文件名 15 printf("%s\n",p); 16 17 char *name = p + 1; //截去"\",只留下文件名 18 printf("%s\n",name); //输出文件名 19 20 char path2[100]; 21 GetCurrentDirectory(100, path2); //获取当前进程目录路径,与上面的不同,具体可以自己试试 22 printf("%s\n",path2); 23 24 system("pause"); 25 return 0; 26 }
标签:style 获取 string argc lan char article 函数参数 sys
原文地址:https://www.cnblogs.com/Duck-Quick/p/9102830.html