Answers for "python check if a path exists if not create it"

27

python check if path does not exist

import os
if not os.path.exists('my_folder'):
    os.makedirs('my_folder')
Posted by: Guest on April-10-2020

Code answers related to "python check if a path exists if not create it"

Python Answers by Framework

Browse Popular Code Answers by Language