Answers for "python create directory exists"

7

python check if directory exists and create

if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on July-21-2021
2

create directory python if not exist

#From version 3.4, the Python language can natively manage this case.
#The makedirs() function accepts a second parameter, exist_ok.
#By setting the value to true, the method will not throw an exception
# if the directory already exists
os.makedirs(repertoire, exist_ok=True)

#other method
if not os.path.exists(repertoire):
	os.makedirs(repertoire)

#other method

try: 
	os.makedirs(repertoire)
except OSError:
	if not os.path.isdir(repertoire):
		Raise
Posted by: Guest on April-06-2022

Code answers related to "python create directory exists"

Python Answers by Framework

Browse Popular Code Answers by Language