Answers for "os.remove folder python"

1

os remove entire folder python

import os
import shutil

os.remove('/your/path/to/file.txt') #removes a file.

os.rmdir('/your/folder/path/') #removes an empty directory.

shutil.rmtree('/your/folder/path/') #deletes a directory and all its contents.
Posted by: Guest on January-21-2021
9

python dlete folder

import shutil

shutil.rmtree('/folder_name')
Posted by: Guest on June-12-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