Answers for "python create empty file if not exists"

6

python os make empty file

open(x, 'a').close()
Posted by: Guest on May-12-2020
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

Code answers related to "python create empty file if not exists"

Python Answers by Framework

Browse Popular Code Answers by Language