Skip to content

Instantly share code, notes, and snippets.

@svlasov
Created May 18, 2014 11:35
Show Gist options
  • Save svlasov/e9933a6316b2672cfe16 to your computer and use it in GitHub Desktop.
Save svlasov/e9933a6316b2672cfe16 to your computer and use it in GitHub Desktop.
check if a directory exists and create it if necessary
if not os.path.exists(directory):
os.makedirs(directory)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment