python 删除非空文件夹时间:2022-10-23 21:35:15 import os import shutil os.remove(path) #删除文件 os.removedirs(path) #删除空文件夹 shutil.rmtree(path) #递归删除文件夹