文件夹删除

import os
import shutil

os.remove(path) #删除文件
os.removedirs(path) #删除空文件夹

shutil.rmtree(path) #递归删除文件夹

你可能感兴趣的:(文件夹删除)