Answers for "check if dir exists then create it python"

5

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
0

python check if dir exists else create

from pathlib import Path
Path("/my/directory").mkdir(parents=True, exist_ok=True)
Posted by: Guest on June-14-2021

Code answers related to "check if dir exists then create it python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language