不能将fdopen与mkstemp一起使用

时间:2014-05-04 03:42:58

标签: python temp temporary-files

我无法通过rwfdopen返回的句柄写入mkstemp打开的文件。

>>> import tempfile
>>> import os
>>> a = tempfile.mkstemp()
>>> b = os.fdopen(a[0], "rw")
>>> b
<open file '<fdopen>', mode 'rw' at 0x7f81ea669f60>
>>> b.write("foo")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IOError: [Errno 9] Bad file descriptor
>>> 

奇怪的是,我可以从打开的rw文件中读取:

>>> g = tempfile.mkstemp()
>>> h = os.fdopen(g[0], "rw")
>>> h.read()
''

如果我以一种模式或另一种模式打开文件,那么事情就可以了:

>>> c = tempfile.mkstemp()
>>> d = os.fdopen(c[0], "r")
>>> d
<open file '<fdopen>', mode 'r' at 0x2380540>
>>> d.read()
''
>>> e = tempfile.mkstemp()
>>> f = os.fdopen(e[0], "w")
>>> f.write("foo")
>>> 

1 个答案:

答案 0 :(得分:3)

rw不是有效模式。

如果要使用更新模式(读/写)打开文件,请使用w+r+模式。

(请参阅open documentationmode os.fdopen参数与open相同。)