我想创建一个名称由用户输入的文件。
这是我的代码:
int function1(){
char path[50];
char choice_f;
char choice_m;
int flag; <-- updated
mode_t mode;
printf("Filename : ");
scanf("%s", path);
//printf("%s", path); <-- path can be shown
printf("\n");
printf("Desire flag : ");
scanf("%c", &choice_f); <-- updated
//printf("%s", path); <-- path CANNOT be shown from here
while (choice_f != '1' && choice_f != '2' && choice_f != '3'){
printf("Invalid input! Flag: ");
scanf("%c", &choice_f); <-- updated
}
if (choice_f == '1')
flag = O_RDONLY; <-- updated
else if (choice_f == '2')
flag = O_WRONLY; <-- updated
else if (choice_f == '3')
flag = O_RDWR; <-- updated
printf("Desire mode : ");
scanf("%c", &choice_m); <-- updated
while(choice_m != '1' && choice_m != '2' && choice_m != '3' && choice_m != '4'){
printf("Invalid input! Mode: ");
scanf("%c", &choice_m); <-- updated
}
if (choice_m == '1')
mode = S_IRWXU;
else if (choice_m == '2')
mode = S_IRWXG;
else if (choice_m == '3')
mode = S_IRWXO;
else if (choice_m == '4')
mode = S_IRWXU | S_IRWXG | S_IRWXO;
int fd = open(path, (int)flag|O_EXCL|O_CREAT);
fchmod(fd, mode);
printf("%d", fd);
if (fd == -1){
perror("error");
return 1;
}else
printf("File \'%s\' Created \n", path);
if (close(fd)<0)
perror("close()");
return 0;
}
但是在程序结束时,我收到错误消息:
Error: Bad file descriptor
我多次测试path
,似乎在第二个scanf()
之后,path
无法显示。即使我尝试将path
分配给另一个变量,它仍然是相同的。
我该怎么做才能解决这个错误?
答案 0 :(得分:1)
我不确定这是否是唯一的问题,但你设置的是choice_f,而choice_m是不正确的,应该是
scanf("%c", &choice_f);
scanf("%c", &choice_m);
代替。即您应该使用%c
格式说明符。如果使用%s
,则会写入一个nul终结符(至少);你没有为此提供存储,因此其他堆栈变量将被覆盖。
之后,正如Nicholas Wilson建议的那样,您应该将flags
更改为int
而不是char*
(并将分配中的引号删除为O_RDONLY等。)