vote up 9 vote down star
4

Is there a way to get functionality similar to mkdir -p on the shell... from within python. I am looking for a solution other than a system call. I am sure the code is less than 20 lines... really I am wondering if someone has already written it?

flag

46% accept rate

5 Answers

vote up 10 vote down check

This is easier than trapping the exception:

import os
if not os.path.exists (...):
    os.makedirs (...)
link|flag
1  
This way, you make it less probable but not impossible that makedirs will fail, in all multitasking operating systems. It's like saying "256 chars should be enough for any path created". – ΤΖΩΤΖΙΟΥ Mar 2 at 23:42
I like this solution, though a friend pointed out that the longer exception based solution would only need one file system call. So on a really high latency corporate NFS server, I would want to go with the exception based approach. – SetJmp Mar 3 at 13:05
1  
@setjmp I agree. You probably don't want to use this approach in an enterprise setting, but would work just fine for some simple scripting. I inferred that is what you were looking for from the way you phrased your question. – Joe Holloway Mar 3 at 15:41
consider what happens in this code if the path doesn't exist, but you don't have permission to create the folder. You still get an exception. – Asa Ayers Mar 3 at 17:47
@Asa Of course. And mkdir -p would complain about that too. Did I miss your point? – Joe Holloway Mar 3 at 19:15
show 2 more comments
vote up 15 vote down

This should be all you need

import os
os.makedirs('/path/to/create')
link|flag
I originally marked this answer as correct however, there is a problem with the solution: if the directory already exists there is an error. mkdir -p does not give an error in this case. – SetJmp Mar 1 at 21:39
@setjmp then use try/except – dex Mar 1 at 21:51
vote up 15 vote down

mkdir -p functionality as follows:

import os, errno

def mkdir_p(path):
    try:
        os.makedirs(path)
    except OSError, exc:
        if exc.errno == errno.EEXIST:
            pass
        else: raise
link|flag
Thanks! A friend pointed out that this solution is the most efficient; requiring one call to the file system. On a contended file system, this is the way to go. Hopefully, your solution will get more up votes and make it to the second place slot. – SetJmp Mar 3 at 13:06
vote up 3 vote down

mkdir -p gives you an error if you the file already exists:

$ touch /tmp/foo
$ mkdir -p /tmp/foo
mkdir: cannot create directory `/tmp/foo': File exists

So a refinement to the previous suggestions would be to re-raise the exception if os.path.isdir returns False (when checking for errno.EEXIST).

(Update) See also this highly similar question; I agree with the accepted answer (and caveats) except I would recommend os.path.isdir instead of os.path.exists.

(Update) Per a suggestion in the comments, the full function would look like:

import os
def mkdirp(directory):
    if not os.path.isdir(directory):
        os.makedirs(directory)
link|flag
You are absolutely correct about this case; however, the program should catch exceptions later on e.g. when trying to open("/tmp/foo/a_file", "w"), so I don't think an update is necessary. You could update your answer with Python code instead, and watch it being upvoted ;) – ΤΖΩΤΖΙΟΥ Mar 3 at 22:43
In a lot of cases that would probably be fine. In general, though, I would prefer the code to fail as early as possible so it's clear what really caused the problem. – Jacob Gabrielson Mar 3 at 22:47
vote up 1 vote down

I think Asa's answer is essentially correct, but you could extend it a little to act more like mkdir -p, either:

import os

def mkdir_path(path):
    if not os.access(path, os.F_OK):
        os.mkdirs(path)

or

import os
import errno

def mkdir_path(path):
    try:
        os.mkdirs(path)
    except os.error, e:
        if e.errno != errno.EEXIST:
            raise

These both handle the case where the path already exists silently but let other errors bubble up.

link|flag

Your Answer

Get an OpenID
or

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