Skip to content

Instantly share code, notes, and snippets.

@dhruvkar
Last active August 23, 2017 19:03
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 dhruvkar/0261b35be112fc45581bf84f3268a10a to your computer and use it in GitHub Desktop.
Save dhruvkar/0261b35be112fc45581bf84f3268a10a to your computer and use it in GitHub Desktop.
best way to make a directory in python
def mkdir(dir_path)
try:
os.makedirs(dir_path)
except OSError as e:
if e.errno != errno.EEXIST:
raise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment