wrtie text file that doesnt exist python code example
Example 1: create text in python if not exists
import os
path = 'some/path/to/file.txt'
if not os.path.exists(path):
with open(path, 'w') as f:
f.write('Hello, world')
mode = 'a' if os.path.exists(path) else 'w'
with open(path, mode) as f:
f.write('Hello, world!\n')
Example 2: create text in python if not exists
import os
path = 'some/path/to/file.txt'
if not os.path.exists(path):
with open(path, 'w') as f:
f.write('Hello, world')
mode = 'a' if os.path.exists(path) else 'w'
with open(path, mode) as f:
f.write('Hello, world!\n')