Answers for "how to delete a file from folder in python"

36

python os remove file

import os
os.remove("filename.txt")
Posted by: Guest on February-11-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 "how to delete a file from folder in python"

Python Answers by Framework

Browse Popular Code Answers by Language