import os
if not os.path.exists('my_folder'):
os.makedirs('my_folder')
try:
os.makedirs("path/to/directory")
except FileExistsError:
# directory already exists
pass
pathlib.Path('/tmp/sub1/sub2').mkdir(parents=True, exist_ok=True)