Skip to content

Instantly share code, notes, and snippets.

@fawkesley
Created January 27, 2018 11:20
Show Gist options
  • Save fawkesley/0afc1b96cb7bf0b13ee922709519288d to your computer and use it in GitHub Desktop.
Save fawkesley/0afc1b96cb7bf0b13ee922709519288d to your computer and use it in GitHub Desktop.
Python `mkdir -p` equivalent
import os
def mkdir_p(directory):
if not os.path.isdir(directory):
os.makedirs(directory)
return directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment