Answers for "python delete files from directory"

5

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
36

python os remove file

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

delete contents of directory python

import os
import glob

files = glob.glob('/YOUR/PATH/*')
for f in files:
    os.remove(f)
Posted by: Guest on November-20-2020
-2

python how to delete a directory with files in it

import shutil

dir_path = '/tmp/img'

try:
    shutil.rmtree(dir_path)
except OSError as e:
    print("Error: %s : %s" % (dir_path, e.strerror))
Posted by: Guest on December-22-2020

Code answers related to "python delete files from directory"

Python Answers by Framework

Browse Popular Code Answers by Language