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?
|
4
|
|
|
|
|
|
This is easier than trapping the exception:
|
||||||||||||||
|
|
|
So a refinement to the previous suggestions would be to re- (Update) See also this highly similar question; I agree with the accepted answer (and caveats) except I would recommend (Update) Per a suggestion in the comments, the full function would look like:
|
||||
|
|
|
|
||
|
|
|
I think Asa's answer is essentially correct, but you could extend it a little to act more like
or
These both handle the case where the path already exists silently but let other errors bubble up. |
|||
|
|
|
|
This should be all you need
|
||
