Answers for "python delete file"

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")
Posted by: Guest on July-19-2020
35

python delete file

import os
import shutil

if os.path.exists("demofile.txt"):
  os.remove("demofile.txt") # one file at a time

os.rmdir("test_directory") # removes empty directory
shutil.rmtree("test_directory") # removes not empty directory and its content
Posted by: Guest on August-19-2020
36

python os remove file

import os
os.remove("filename.txt")
Posted by: Guest on February-11-2020
3

python delete saved image

import os
os.remove(file) for file in os.listdir('path/to/directory') if file.endswith('.png')
Posted by: Guest on June-15-2020
3

how to delete file in python

import os
os.remove("ChangedFile.csv")
print("File Removed!")
Posted by: Guest on September-28-2020
2

python delete file

import os
if os.path.exists("demofile.txt"):
  os.remove("demofile.txt")
else:
  print("The file does not exist")
Posted by: Guest on April-30-2021

Python Answers by Framework

Browse Popular Code Answers by Language