We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8675659 commit 7480882Copy full SHA for 7480882
create_dir_if_not_there.py
@@ -0,0 +1,5 @@
1
+import os
2
+home=os.path.expanduser("~")
3
+print home
4
+if not os.path.exists(home+'/testdir'):
5
+ os.makedirs(home+'/testdir')
0 commit comments