forked from geekcomputers/Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdir_test.py
More file actions
Latest commit
33 lines (26 loc) · 997 Bytes
/
Copy pathdir_test.py
File metadata and controls
33 lines (26 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Script Name : dir_test.py
# Author : Craig Richards
# Created : 29th November 2011
# Last Modified :
# Version : 1.0
# Modifications :
# Description : Tests to see if the directory testdir exists, if not it will create the directory for you
from __future__ importprint_function
importos# Import the OS Module
importsys
defmain():
ifsys.version_info.major>=3: # if the interpreter version is 3.X, use 'input',
input_func=input# otherwise use 'raw_input'
else:
input_func=raw_input
CheckDir=input_func("Enter the name of the directory to check : ")
print()
ifos.path.exists(CheckDir): # Checks if the dir exists
print("The directory exists")
else:
print("No directory found for "+CheckDir) # Output if no directory
print()
os.makedirs(CheckDir) # Creates a new dir for the given name
print("Directory created for "+CheckDir)
if__name__=='__main__':
main()