码迷,mamicode.com
首页 > 编程语言 > 详细

python学习记录第五篇--遍历目录

时间:2014-07-11 10:59:54      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:文件   os   for   python   re   学习   

#coding=utf-8
‘‘‘
@author: 
简单遍历目录删除文件的小程序
‘‘‘
import os
#查找文件操作
def findFile(path):
fileList=[]
for rootPath,subRoot,fileName in os.walk(path):
for sub in fileName:
if os.path.isfile(os.path.join(rootPath,sub)):
k=os.path.splitext(sub)[1].lower()
if k in (‘.jpg‘,‘.png‘,‘.gif‘):
j=os.path.join(rootPath,sub)
fileList.append(j)
return fileList

#删除文件操作
def deleteFile(file):
count=0
for s in file:
os.remove(s)
count+=1
print "共%s张图片被删除"% count

if __name__=="__main__":
path =raw_input("请输入要删除图片的根目录,例如,E:\python\pest:\n")
p=findFile(path)
deleteFile(p)

python学习记录第五篇--遍历目录,布布扣,bubuko.com

python学习记录第五篇--遍历目录

标签:文件   os   for   python   re   学习   

原文地址:http://www.cnblogs.com/python-cainiao/p/3834131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!