Skip to content

Instantly share code, notes, and snippets.

@seaslee
Created March 5, 2013 08:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seaslee/5088906 to your computer and use it in GitHub Desktop.
Save seaslee/5088906 to your computer and use it in GitHub Desktop.
"mkdir -p" python implementation
def mkdir_p(path):
try:
os.makedirs(path)
except OSError as exc: # Python >2.5
if exc.errno == errno.EEXIST and os.path.isdir(path):
pass
else: raise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment