python delete file 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 os remove file
import os
os.remove("filename.txt")
Example 3: python delete saved image
import os
os.remove(file) for file in os.listdir('path/to/directory') if file.endswith('.png')
Example 4: if file exists delete python
import os
filePath = '/home/somedir/Documents/python/logs'
if os.path.exists(filePath):
os.remove(filePath)
else:
print("Can not delete the file as it doesn't exists")
Example 5: python delete file
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
else:
print("The file does not exist")
Example 6: python delete file
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
else:
print("The file does not exist")