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

python 遍历文件夹 文件

时间:2016-06-16 17:40:59      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

import os
import os.path
rootdir = "/Users/chen/deploy/code/alaudadeploy/deb-linux-4.4.0-21-generic"

for parent,dirnames,filenames in os.walk(rootdir):
for dirname in dirnames:
print "parent is:" + parent
print "dirname is" + dirname

for filename in filenames:
print "parent is:" + parent
print "filename is:" + filename
print "the full name of the file is:" + os.path.join(parent,filename)

python 遍历文件夹 文件

标签:

原文地址:http://www.cnblogs.com/show668/p/5591454.html

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