python 删除非空文件夹时间:2022-01-04 16:26:24 import os import shutil os.remove(path) #删除文件 os.removedirs(path) #删除空文件夹 shutil.rmtree(path) #递归删除文件夹