Answers for "python how to make in the existing folder a new folder"

2

creating a new folder in python

newpath = r'C:\Program Files\arbitrary' 
if not os.path.exists(newpath):
    os.makedirs(newpath)
Posted by: Guest on February-15-2020

Code answers related to "python how to make in the existing folder a new folder"

Python Answers by Framework

Browse Popular Code Answers by Language