fermer
os.remove() #removes a file.
os.rmdir() #removes an empty directory.
shutil.rmtree() #deletes a directory and all its contents.
Real Raccoon
os.remove() #removes a file.
os.rmdir() #removes an empty directory.
shutil.rmtree() #deletes a directory and all its contents.
import shutil
dir_path = '/tmp/img'
try:
shutil.rmtree(dir_path)
except OSError as e:
print("Error: %s : %s" % (dir_path, e.strerror))