Answers for "python create file and directory if not exists"

11

python create file if not exists

import os

if not os.path.exists(path):
    with open(path, 'w'):
Posted by: Guest on May-09-2020
7

python make directory if not exists

try:
    os.makedirs("path/to/directory")
except FileExistsError:
    # directory already exists
    pass
Posted by: Guest on November-07-2020

Code answers related to "python create file and directory if not exists"

Python Answers by Framework

Browse Popular Code Answers by Language