gpt4 book ai didi

c - 混合 fdopen() 和 open() -> 错误的文件描述符

转载 作者:太空狗 更新时间:2023-10-29 14:52:43 24 4
gpt4 key购买 nike

int source = open("hi", O_CREAT | O_RDONLY);
int dest = open("resultfile", O_CREAT | O_RDWR | O_TRUNC);

FILE* source1 = fdopen(source, "r");
FILE* dest1 = fdopen(dest, "w+");

// outside of a testcase I would write something into 'resultfile' here

close(source);
close(dest);
fclose(source1);
fclose(dest1);

int sourcef = open("resultfile", O_RDONLY);
printf(strerror(errno)); // <--- Bad file descriptor

我不明白为什么?如何成功地将基于流的 IO 与 open() 混合使用?

我正在使用的一个库只接受一个整数 fd(并且该库内部负责关闭它,大概是用 close()),但我仍然需要使用该文件,但我没有看到如果没有像(fread(),ftell()等)这样的f()调用,这怎么可能?

最佳答案

fclose 为您调用 close。如果您想在调用 fclose 后保留 fd,请先dup fd。

int fd = open(...);
int fd2 = dup(fd);
FILE *fp = fdopen(fd2);
fclose(fp);
// fd is still valid.

您示例中的错误文件描述符错误消息在 fclose(dest1) 调用中挥之不去。

关于c - 混合 fdopen() 和 open() -> 错误的文件描述符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8417123/

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