Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

creating a new folder in python

newpath = r'C:Program Filesarbitrary' 
if not os.path.exists(newpath):
    os.makedirs(newpath)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #creating #folder #python
ADD COMMENT
Topic
Name
6+2 =