使用python怎么删除任意一个路径下的文件夹 python删除指定路径文件

主机教程 建站分享 2年前 (2022-12-13) 164次浏览

文章摘要:使用python怎么删除任意一个路径下的文件夹 python删除指定路径文件

在python中使用shutil模块删除指定路径下的文件夹,具体方法如下: import os import […]

在python中使用shutil模块删除指定路径下的文件夹,具体方法如下:

import os

import shutil #导入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.isdir(filePath):

shutil.rmtree(filePath,True)

print "Directory: " + filePath +" was removed!"


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:使用python怎么删除任意一个路径下的文件夹 python删除指定路径文件
文章链接:http://www.7966.org/post/13651.html
转载请注明出处

喜欢 (0)