gpt4 book ai didi

c - fopen 在 C 中返回无效参数

转载 作者:太空狗 更新时间:2023-10-29 17:18:23 24 4
gpt4 key购买 nike

我搜索了论坛,找不到这个问题的答案。这似乎很常见,但上述修复均不适用。

这是我打开文件的代码:

#include <stdio.h>
#include <string.h>

void main() {
FILE *input;
char path[200];

printf("Enter the full file path and file name in the following format:"
"\nC:\\Users\\Username\\etc......\\filename.extension\n");
fgets(path, 200, stdin);
printf("%s",path);
input=fopen(path,"r");
if (input==NULL) {
perror("The following errors were encountered");
return(-1);
}
}

printf(%s,path) 正确显示我要打开的文件的路径和名称,但 fopen 总是返回无效参数。我也尝试过在 fopen 中使用指向路径的指针,但这总是会导致程序崩溃。

最佳答案

您正在使用 fgets 获取 path\nfgets 视为有效字符。您需要手动将其删除。

fgets(path, 200, stdin);
path[strlen(path) - 1] = '\0';

关于c - fopen 在 C 中返回无效参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26181211/

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