xxxxxxxxxx
import os
import glob
files = glob.glob('/YOUR/PATH/*')
for f in files:
os.remove(f)
xxxxxxxxxx
import shutil
dir_path = '/tmp/img'
try:
shutil.rmtree(dir_path)
except OSError as e:
print("Error: %s : %s" % (dir_path, e.strerror))
xxxxxxxxxx
os.remove() removes a file.
os.rmdir() removes an empty directory.
shutil.rmtree() deletes a directory and all its contents.