Python在mkstemp()文件中写入

时间:2016-07-18 12:40:25

标签: python mkstemp

我正在使用:

创建一个tmp文件
from tempfile import mkstemp

我正在尝试写这个文件:

tmp_file = mkstemp()
file = open(tmp_file, 'w')
file.write('TEST\n')

确实我关闭文件并正确执行但是当我尝试捕获tmp文件时,它仍然是空的..它看起来很基本但我不知道它为什么不起作用,有什么解释?

4 个答案:

答案 0 :(得分:9)

mkstemp()返回带有文件描述符和路径的元组。我认为问题是你正在写错路。 (你正在写一个像'(5, "/some/path")'这样的路径。)你的代码应该是这样的:

from tempfile import mkstemp

fd, path = mkstemp()

# use a context manager to open the file at that path and close it again
with open(path, 'w') as f:
    f.write('TEST\n')

# close the file descriptor
os.close(fd)

答案 1 :(得分:6)

smarx的答案通过指定path打开文件。但是,更容易指定fd。在这种情况下,上下文管理器会自动关闭文件描述符:

from tempfile import mkstemp

fd, path = mkstemp()

# use a context manager to open (and close) file descriptor fd (which points to path)
with open(fd, 'w') as f:
    f.write('TEST\n')

# This causes the file descriptor to be closed automatically

答案 2 :(得分:1)

mkstemp 返回 (fd, name),其中 fd 是准备以二进制模式写入的操作系统级文件描述符;所以您只需要使用 os.write(fd, 'TEST\n'),然后使用 os.close(fd)

无需使用 openos.fdopen 重新打开文件。

jcomeau@bendergift:~$ python
Python 2.7.16 (default, Apr  6 2019, 01:42:57) 
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> from tempfile import mkstemp
>>> fd, name = mkstemp()
>>> os.write(fd, 'TEST\n')
5
>>> print(name)
/tmp/tmpfUDArK
>>> os.close(fd)
>>> 
jcomeau@bendergift:~$ cat /tmp/tmpfUDArK 
TEST

当然,在命令行测试中,不需要使用 os.close,因为无论如何文件在退出时都会关闭。但这是糟糕的编程习惯。

答案 3 :(得分:0)

此示例使用os.fdopen打开Python文件描述符以编写漂亮的内容,然后关闭它(在with上下文块的末尾)。其他非Python进程也可以使用该文件。最后,文件被删除。

import os
from tempfile import mkstemp

fd, path = mkstemp()

with os.fdopen(fd, 'w') as fp:
    fp.write('cool stuff\n')

# Do something else with the file, e.g.
# os.system('cat ' + path)

# Delete the file
os.unlink(path)