关闭 FILE 指针而不关闭底层文件描述符
通过使用 fdopen()
、fileno()
可以使用现有文件描述符打开流。然而,使用流打开文件后,关闭文件的正确方法是使用 fclose()
FILE
指针。如何关闭流,但保留打开的文件描述符?
此行为类似于调用 fflush()
,然后调用 fileno()
,然后不再使用 FILE
指针,除非在关闭时。另一个问题是,如果您再次使用 fdopen()
,现在会出现多个 FILE
指针,并且您只能关闭其中一个。
By using fdopen()
, fileno()
it's possible to open streams with existing file descriptors. However the proper way to close a file, once you've opened it with a stream is to fclose()
the FILE
pointer. How can one close the stream, but retain the open file descriptor?
This behaviour is akin to calling fflush()
and then fileno()
, and then never using the FILE
pointer again, except in closing. An additional concern is that if you then fdopen()
again, there are now multiple FILE
pointers, and you can only close one of them.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 POSIXy 系统(我假设您是这样,因为您有
fileno()
),您可以使用dup()
来克隆文件描述符:或者您可以向
fdopen()
提供一个重复的文件描述符:这样,fd 的另一个副本将不会与 FILE * 一起关闭。但是,请记住位置指针是共享的,因此如果您同时使用两者,请务必小心。此外,当您关闭副本时,原始 fd 上持有的任何
fcntl()
锁都将被释放。If you're on a POSIXy system (which I assume you are, since you have
fileno()
), you can usedup()
to clone the file descriptor:Or you can hand
fdopen()
a duplicate file descriptor:Either way, the other copy of the fd won't close with the
FILE *
. However, keep in mind the location pointer is shared, so be careful if you are using both at the same time. Also, anyfcntl()
locks held on the original fd will be released when you close the copy.如果其他一切都失败了,dup(2) 可以提供帮助。
If everything else fails, dup(2) could help.