Created
May 18, 2014 11:35
-
-
Save svlasov/e9933a6316b2672cfe16 to your computer and use it in GitHub Desktop.
check if a directory exists and create it if necessary
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
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