Answers for "shutil remove file"

38

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
-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

Python Answers by Framework

Browse Popular Code Answers by Language