Python - How do I convert "an OS-level handle to an open file" to a file object? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T05:04:49Z http://stackoverflow.com/feeds/question/168559 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/168559/python-how-do-i-convert-an-os-level-handle-to-an-open-file-to-a-file-object 2 Python - How do I convert "an OS-level handle to an open file" to a file object? Daryl Spitzer 2008-10-03T19:41:04Z 2009-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>&gt;&gt;&gt; import tempfile &gt;&gt;&gt; tup = tempfile.mkstemp() &gt;&gt;&gt; import os &gt;&gt;&gt; f = os.fdopen(tup[0]) &gt;&gt;&gt; f.write('foo\n') Traceback (most recent call last): File "&lt;stdin&gt;", 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#168584 12 Answer by Peter Hoffmann for Python - How do I convert "an OS-level handle to an open file" to a file object? Peter Hoffmann 2008-10-03T19:47:17Z 2008-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#168640 4 Answer by efotinis for Python - How do I convert "an OS-level handle to an open file" to a file object? efotinis 2008-10-03T20:00:14Z 2008-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#168705 1 Answer by fivebells for Python - How do I convert "an OS-level handle to an open file" to a file object? fivebells 2008-10-03T20:19:54Z 2008-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#1296063 1 Answer by Daryl Spitzer for Python - How do I convert "an OS-level handle to an open file" to a file object? Daryl Spitzer 2009-08-18T19:44:31Z 2009-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>