vote up 2 vote down star
1

tempfile.mkstemp() returns "a tuple containing an OS-level handle to an open file (as would be returned by os.open()) and the absolute pathname of that file, in that order." How do I convert that OS-level handle to a file object?

The documentation for os.open() states:

To wrap a file descriptor in a "file object", use fdopen().

So I tried:

>>> import tempfile
>>> tup = tempfile.mkstemp()
>>> import os
>>> f = os.fdopen(tup[0])
>>> f.write('foo\n')
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
IOError: [Errno 9] Bad file descriptor
flag

Remember to mark an answer as "Accepted" if it worked for you. – John Millikin Oct 3 '08 at 20:18

4 Answers

vote up 12 vote down check

You can use

os.write(tup[0], "foo\n")

to write to the handle.

If you want to open the handle for writing you need to add the "w" mode

f = os.fdopen(tup[0], "w")
f.write("foo")
link|flag
That works--thanks. But technically fdopen returns a file object (and you pass in a file descriptor), so if I could edit your answer I'd change it to "f = os.fdopen(tup[0], "w");f.write("foo") – Daryl Spitzer Oct 3 '08 at 20:03
vote up 4 vote down

You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail.

I think mkstemp() creates the file for reading only. Calling fdopen with 'w' probably reopens it for writing (you can reopen the file created by mkstemp).

link|flag
vote up 1 vote down

What's your goal, here? Is tempfile.TemporaryFile inappropriate for your purposes?

link|flag
I don't want the file destroyed as soon as it's closed. (And I want to be sure the file to be visible.) – Daryl Spitzer Aug 18 at 19:37
vote up 0 vote down

Here's how to do it using a with statement:

from __future__ import with_statement
from contextlib import closing
fd, filepath = tempfile.mkstemp()
with closing(os.fdopen(fd, 'w')) as tf:
    tf.write('foo\n')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.