Skip to content

Instantly share code, notes, and snippets.

@mberz
Created January 6, 2021 09:59
Show Gist options
  • Select an option

  • Save mberz/41c7a86ee08a93cc9e2be9af0a8470e3 to your computer and use it in GitHub Desktop.

Select an option

Save mberz/41c7a86ee08a93cc9e2be9af0a8470e3 to your computer and use it in GitHub Desktop.
Create directories if they do not exist
dir_name = 'my_dir'
try:
os.makedirs(dir_name)
except OSError:
if os.path.exists(dir_name):
pass
else:
# Raise the exception on everything other than OSError
raise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment