Answers for "create directory python if not exist"

36

python create new folder if not exist

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on April-10-2020
9

python make directory if not exists

try:
    os.makedirs("path/to/directory")
except FileExistsError:
    # directory already exists
    pass
Posted by: Guest on November-07-2020
1

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
2

python pathlib create directory if not exists

pathlib.Path('/tmp/sub1/sub2').mkdir(parents=True, exist_ok=True)
Posted by: Guest on October-17-2021

Code answers related to "create directory python if not exist"

Python Answers by Framework

Browse Popular Code Answers by Language