📅  最后修改于: 2022-03-11 14:47:24.399000             🧑  作者: Mango
import shutil
dir_path = '/tmp/img'
try:
shutil.rmtree(dir_path)
except OSError as e:
print("Error: %s : %s" % (dir_path, e.strerror))