Answers for "if directory not exists then create 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
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 "if directory not exists then create python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language