Created
November 29, 2016 16:08
-
-
Save blaylockbk/ee717837c3ebcb815a4f7ce50f40fc1c to your computer and use it in GitHub Desktop.
Create directory if it doesn't exits
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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