Python: Best way to create directory if it doesn't exist for file write? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T10:39:26Zhttp://stackoverflow.com/feeds/question/273192http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write13Python: Best way to create directory if it doesn't exist for file write?Parand2008-11-07T18:56:45Z2009-01-31T00:23:42Z
<p>What's the most elegant way to check if the directory a file is going to be written to exists, and if not create the directory? Is there a better way than:</p>
<p>Update: Somehow I'd missed os.path.exists, thanks kanja, Blair, and Douglas, this is what I've got now:</p>
<pre><code>def ensure_dir(f):
d = os.path.dirname(f)
if not os.path.exists(d):
os.makedirs(d)
</code></pre>
<p>There's no magic flag to "open" that automatically does this, is there?</p>
<p>Initial attempt:</p>
<pre><code>filename = "/my/directory/filename.txt"
dir = os.path.dirname(filename)
try:
os.stat(dir)
except:
os.path.mkdir(dir)
f = file(filename)
</code></pre>
http://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write/273206#2732060Answer by kanja for Python: Best way to create directory if it doesn't exist for file write?kanja2008-11-07T19:00:01Z2008-11-07T19:00:01Z<p>try the os.path.exists function</p>
<pre><code>if not os.path.exists(dir):
os.path.mkdir(dir)
</code></pre>
http://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write/273208#2732087Answer by Douglas Mayle for Python: Best way to create directory if it doesn't exist for file write?Douglas Mayle2008-11-07T19:01:25Z2008-11-07T19:01:25Z<p>Check out <a href="http://www.python.org/doc/2.5.2/lib/os-file-dir.html" rel="nofollow">os.makedirs</a>: (It makes sure the complete path exists.) To handle the fact the directory might exist, catch OSError.</p>
<pre><code>import os
try:
os.makedirs('./path/to/somewhere')
except OSError:
pass
</code></pre>
http://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write/273227#27322717Answer by Blair Conrad for Python: Best way to create directory if it doesn't exist for file write?Blair Conrad2008-11-07T19:06:07Z2008-11-07T21:34:04Z<p>I see two answers with good qualities, each with a small flaw, so I'll give my take on it:</p>
<p>Try <code>os.path.exists</code>, and consider <code>os.makedirs</code> for the creation.</p>
<pre><code>if not os.path.exists(dir):
os.makedirs(dir)
</code></pre>
<p>As noted in comments and elsewhere, there's a race condition - if the directory is created between the <code>os.path.exists</code> and the <code>os.makedirs</code> calls, the <code>os.makedirs</code> will fail with an <code>OSError</code>. Unfortunately, blanket-catching <code>OSError</code> and continuing is not foolproof, as it will ignore a failure to create the directory due to other factors, such as insufficient permissions, full disk, etc.</p>
<p>One option would be to trap the <code>OSError</code> and examine the embedded error code, if one knew what's what (on my OS, 13 seems to indicate that permission is denied, and 17 that the file exists - it's not clear that that's even remotely portable, but is explored in <a href="http://stackoverflow.com/questions/273698/is-there-a-cross-platform-way-of-getting-information-from-pythons-oserror">Is there a cross-platform way of getting information from Python’s OSError</a>). Alterntively, there could be a second <code>os.path.exists</code>, but suppose another created the directory after the first check, then removed it before the second one - we could still be fooled. </p>
<p>Depending on the application, the danger of concurrent operations may be more or less than the danger posed by other factors such as file permissions. The developer would have to know more about the particular application being developed and its expected environment before choosing an implementation.</p>
http://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write/273679#2736794Answer by Ali A for Python: Best way to create directory if it doesn't exist for file write?Ali A2008-11-07T21:23:03Z2008-11-07T23:29:58Z<p>Ok, sorry, I made too many comments, I guess I should put it down. It's not totally foolproof though.</p>
<pre><code>import os
dirname = 'create/me'
try:
os.makedirs(dirname)
except OSError:
if os.path.exists(dirname):
# We are nearly safe
pass
else:
# There was an error on creation, so make sure we know about it
raise
</code></pre>
<p>Now as I say, this is not really foolproof, because we have the possiblity of failing to create the directory, and another process creating it during that period. I think I will ask the proper remainder as a question, as to whether the OSError codes can be used cross-platform.</p>
http://stackoverflow.com/questions/273192/python-best-way-to-create-directory-if-it-doesnt-exist-for-file-write/444023#4440232Answer by crimsonstone for Python: Best way to create directory if it doesn't exist for file write?crimsonstone2009-01-14T17:57:32Z2009-01-14T17:57:32Z<p>Granted.. this question has long since been answered, but I'll throw in my two cents.</p>
<p>I would personally recommend that you use <code>os.path.isdir()</code> to test instead of <code>os.path.exists()</code>.</p>
<pre><code>>>> os.path.exists('/tmp/dirname')
True
>>> os.path.exists('/tmp/dirname/filename.etc')
True
>>> os.path.isdir('/tmp/dirname/filename.etc')
False
>>> os.path.isdir('/tmp/fakedirname')
False
</code></pre>
<p>If you have:</p>
<pre><code>>>> dir = raw_input(":: ")
</code></pre>
<p>And a foolish user inputs:</p>
<pre><code>:: /tmp/dirname/filename.etc
</code></pre>
<p>... You're going to end up with a directory named <code>filename.etc</code> when you pass that arg to <code>os.makedirs()</code> if you test with <code>os.path.exists()</code>.</p>