delete file contents python code example
Example 1: python delete file
import os
import shutil
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
os.rmdir("test_directory")
shutil.rmtree("test_directory")
Example 2: python delete contents of file
f = open('file.txt', 'r+')
f.truncate(0)
Example 3: clearing all text from a file in python
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()
Example 4: python delete contents of file
open('file.txt', 'w').close()