import shutil  dir_path = '/tmp/img'  try:     shutil.rmtree(dir_path) except OSError as e:     print("Error: %s : %s" % (dir_path, e.strerror)) 

Read more of this post