这是我正在处理的代码。要使程序自动检测其exe文件路径并将其保存在字符串变量中,需要进行哪些更改?
#include<stdio.h>
#include<conio.h>
#include<process.h>
#include<dir.h>
void main()
{
int check;
char dirname[150], u_name[30];
printf("Enter a username:");
scanf("%s",&u_name);
strcpy(dirname,"C:/Users/Bilal/Desktop/");
strcat(dirname,u_name);
check = mkdir(dirname);
if (!check)
printf("Directory created\n");
else
{
printf("Unable to create directory\n");
exit(1);
}
printf("\nPress any key to exit program");
getch();
}
最佳答案
GetModuleFileName将告诉您exe从何处运行。
#include <windows.h>
...
WCHAR dirname[1024];
GetModuleFileNameW(NULL, dirname, 1024);
使用wcstombs将
wchar_t
转换为char
。strcat(dirname, whatever); // Or strncat
mkdir(dirname);
关于c - 我们如何在C程序中获取.exe文件的完整路径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45814577/