Created
June 8, 2019 15:15
-
-
Save vwrs/21c661f27381b6a8aecdfbeb3e6ecb46 to your computer and use it in GitHub Desktop.
This file contains 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 | |
PATH_DIR = '/path/to/dir' | |
if not os.path.exists(PATH_DIR): | |
print('mkdir', PATH_DIR) | |
os.mkdir(PATH_DIR) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment