Answers for "python write a file but it exists and it is open"

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 write a file but it exists and it is open"

Python Answers by Framework

Browse Popular Code Answers by Language