Created
June 8, 2015 09:59
-
-
Save julienr/e1407ac4caafd19b68cd to your computer and use it in GitHub Desktop.
mkdir -p in python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import errno | |
def mkdir_p(path): | |
try: | |
os.makedirs(path) | |
except OSError as exc: # Python >2.5 | |
if exc.errno == errno.EEXIST: | |
pass | |
else: raise |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment