We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fde0c1 commit be1b412Copy full SHA for be1b412
dir_test.py
@@ -1,12 +1,12 @@
1
# Script Name : dir_test.py
2
# Author : Craig Richards
3
# Created : 29th November 2011
4
+# Last Modified :
5
# Version : 1.0
-
6
# Modifications :
7
+
8
# Description : Tests to see if the directory testdir exists, if not it will create the directory for you
9
10
import os # Import the OS module
11
-if not os.path.exists('testdir'): # Check to see if it exists
12
- os.makedirs('testdir') # Create the directory
+if not os.path.exists('testdir'): # Check to see if it exists
+ os.makedirs('testdir') # Create the directory
0 commit comments