python删除某个目录文件夹的方法

caizhijie94420 26 0 PDF 2020-12-22 10:12:37

python删除某个目录文件夹及文件的方法: #!/usr/bin/env python import os import shutil delList = [] delDir = "/home/test" delList = os.listdir(delDir ) for f in delList: filePath = os.path.join( delDir, f ) if os.path.isfile(filePath): os.remove(filePath) print filePath + " was removed!" elif os.path.

用户评论
请输入评论内容
评分:
暂无评论