Pathon删除指定文件夹下的文件夹和文件
作者:互联网
import os import shutil from pathlib import Path def delFileAndDir(delDir): if Path(delDir).exists(): delList = os.listdir(delDir) for f in delList: filePath = os.path.join(delDir,f) if os.path.isfile(filePath): os.remove(filePath) elif os.path.isdir(filePath): shutil.rmtree(filePath,True)
标签:Pathon,删除,filePath,delDir,文件夹,path,import,shutil,os 来源: https://www.cnblogs.com/yanweichen/p/15255247.html