Python - How do I convert "an OS-level handle to an open file" to a file object? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T05:04:49Zhttp://stackoverflow.com/feeds/question/168559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object2Python - How do I convert "an OS-level handle to an open file" to a file object?Daryl Spitzer2008-10-03T19:41:04Z2009-08-18T19:44:31Z
<p><a href="http://www.python.org/doc/2.5.2/lib/module-tempfile.html" rel="nofollow">tempfile.mkstemp()</a> 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?</p>
<p>The <a href="http://www.python.org/doc/2.5.2/lib/os-fd-ops.html" rel="nofollow">documentation for os.open()</a> states: </p>
<blockquote>
<p>To wrap a file descriptor in a "file
object", use fdopen().</p>
</blockquote>
<p>So I tried:</p>
<pre><code>>>> 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
</code></pre>
http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/168584#16858412Answer by Peter Hoffmann for Python - How do I convert "an OS-level handle to an open file" to a file object?Peter Hoffmann2008-10-03T19:47:17Z2008-10-03T20:06:53Z<p>You can use </p>
<pre><code>os.write(tup[0], "foo\n")
</code></pre>
<p>to write to the handle.</p>
<p>If you want to open the handle for writing you need to add the <strong>"w"</strong> mode</p>
<pre><code>f = os.fdopen(tup[0], "w")
f.write("foo")
</code></pre>
http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/168640#1686404Answer by efotinis for Python - How do I convert "an OS-level handle to an open file" to a file object?efotinis2008-10-03T20:00:14Z2008-10-03T20:06:06Z<p>You forgot to specify the open mode ('w') in fdopen(). The default is 'r', causing the write() call to fail.</p>
<p>I think mkstemp() creates the file for reading only. Calling fdopen with 'w' probably reopens it for writing (you <em>can</em> reopen the file created by mkstemp).</p>
http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/168705#1687051Answer by fivebells for Python - How do I convert "an OS-level handle to an open file" to a file object?fivebells2008-10-03T20:19:54Z2008-10-03T20:19:54Z<p>What's your goal, here? Is <code>tempfile.TemporaryFile</code> inappropriate for your purposes?</p>
http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object/1296063#12960631Answer by Daryl Spitzer for Python - How do I convert "an OS-level handle to an open file" to a file object?Daryl Spitzer2009-08-18T19:44:31Z2009-08-18T19:44:31Z<p>Here's how to do it using a with statement:</p>
<pre><code>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')
</code></pre>