python check if directory exists and create
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
python check if directory exists and create
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us