关闭使用 os.fdopen 打开的文件是否会关闭操作系统级 fd?

发布于 2024-11-30 05:33:21 字数 194 浏览 0 评论 0原文

我正在使用 tempfile.mkstemp() 创建一个临时文件。它返回一个操作系统级的 fd 以及文件的路径。我想要 os.fdopen() 操作系统级文件描述符来写入它。如果我随后关闭 os.fdopen() 返回的文件,操作系统级文件描述符是否会被关闭,或者我是否必须显式地 os.close() 来关闭它?文档似乎没有明确说明发生了什么。

I'm making a temporary file with tempfile.mkstemp(). It returns an os-level fd along with the path to the file. I want to os.fdopen() the os-level file descriptor to write to it. If I then close the file that os.fdopen() returned, will the os-level file descriptor be closed, or do I have to os.close() it explicitly? The docs don't seem to say what happens explicitly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终陌 2024-12-07 05:33:21

我很确定 fd 将被关闭。如果你不想这样,你可以先复制它。当然,您始终可以轻松地对此进行测试。

测试是这样的:

from __future__ import print_function

import os
import tempfile
import errno

fd, tmpname = tempfile.mkstemp()
fo = os.fdopen(fd, "w")
fo.write("something\n")
fo.close()
try:
    os.close(fd)
except OSError as oserr:
    if oserr.args[0] == errno.EBADF:
            print ("Closing file has closed file descriptor.")
    else:
        print ("Some other error:", oserr)
else:
    print ("File descriptor not closed.")

这表明当文件对象关闭时,底层文件描述符也被关闭。

I'm pretty sure the fd will be closed. If you don't want that you can dup it first. Of course you can always test this easily enough.

Test is like this:

from __future__ import print_function

import os
import tempfile
import errno

fd, tmpname = tempfile.mkstemp()
fo = os.fdopen(fd, "w")
fo.write("something\n")
fo.close()
try:
    os.close(fd)
except OSError as oserr:
    if oserr.args[0] == errno.EBADF:
            print ("Closing file has closed file descriptor.")
    else:
        print ("Some other error:", oserr)
else:
    print ("File descriptor not closed.")

Which shows that the underlying file descriptor is closed when the file object is closed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文