xxxxxxxxxx
if (not os.path.exists("images")):
os.mkdir("images")
xxxxxxxxxx
#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
xxxxxxxxxx
try:
os.makedirs("path/to/directory")
except FileExistsError:
# directory already exists
pass
xxxxxxxxxx
pathlib.Path('/tmp/sub1/sub2').mkdir(parents=True, exist_ok=True)
xxxxxxxxxx
def newfolder(path):
import os
try:
os.mkdir(path)
except:
newfolder(path[:path.rindex("/")])
newfolder(path)
import os
# checking if the directory demo_folder
# exist or not.
if not os.path.exists("path/to/demo_folder"):
# if the demo_folder directory is not present
# then create it.
os.makedirs("path/to/demo_folder")