gpt4 book ai didi

c - 递归函数后在 C 中打开文件的错误文件描述符

转载 作者:太空宇宙 更新时间:2023-11-04 06:49:47 24 4
gpt4 key购买 nike

我想在 C 和 errno:2 的 openFile 函数中进行错误检查 我想再次递归调用相同的函数。

我没有得到正确的答案,如果我想在打开文件后执行 fputs(),我会得到一个错误(错误的文件描述符)

这是我的代码:

void openFile(FILE **fstream, char* path, char* mode) {
*fstream = fopen(path, mode);
if(*fstream == NULL) {
printf("\nError number %2d : ",errno);
perror("Error opening file: ");
switch (errno) {
case 2:
printf("Creating file %s now...\n", path);
*fstream = fopen(path, "a+"); //Creating file in append-mode
if (fstream == NULL) {
perror("Couldn't open the file!\nError");
exit(EXIT_FAILURE);
}
fclose(*fstream); //Closing filestream
openFile(fstream, path, mode); //Recursive call of openFile() to re-open in read-mode
/* freopen(path,mode,fstream) */ //Doesn't work either
break;
default:
exit(EXIT_FAILURE);
break;
}
} else if (*fstream != NULL) {
printf("Successfully opened %s\n", path);
}
}

电话:

   openFile(&fp, path,"r");
if (fputs("blabla\nblabla\n",fp) == EOF) {
perror("Unable to write file with fputs()");
}

我做错了什么?我认为这是在函数的递归调用点,但我必须在这里做什么?我不明白..

输出是:

> .\a
Content of path: test.txt
Error number 2 : Error opening file: : No such file or directory
Creating file test.txt now...
Successfully opened test.txt
Unable to write file with fputs(): Bad file descriptor

PS:我是 C 的初学者,我已经阅读并在 youtub 上看了很多关于指针的内容,但我没有弄错。

提前致谢

最佳答案

您使用 "r" 打开文件,但您正在尝试写入。你需要 "w" 来代替。

关于c - 递归函数后在 C 中打开文件的错误文件描述符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53142765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com