Skip to content

Instantly share code, notes, and snippets.

@blaylockbk
Created November 29, 2016 16:08
Show Gist options
  • Save blaylockbk/ee717837c3ebcb815a4f7ce50f40fc1c to your computer and use it in GitHub Desktop.
Save blaylockbk/ee717837c3ebcb815a4f7ce50f40fc1c to your computer and use it in GitHub Desktop.
Create directory if it doesn't exits
import os
OUTDIR = '/this/path/will/be/created/'
if not os.path.exists(OUTDIR):
os.makedirs(OUTDIR)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment