Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2268576
  • 博文数量: 293
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2170
  • 用 户 组: 普通用户
  • 注册时间: 2014-03-31 14:30
个人简介

自己慢慢积累。

文章分类

全部博文(293)

分类: Python/Ruby

2016-04-22 16:17:20

转自:http://www.cnblogs.com/kaituorensheng/archive/2012/08/14/2638935.html

点击(此处)折叠或打开

  1. import os
  2. import os.path
  3. rootdir = “d:\data” # 指明被遍历的文件夹

  4. for parent,dirnames,filenames in os.walk(rootdir): #三个参数:分别返回1.父目录 2.所有文件夹名字(不含路径) 3.所有文件名字
  5.     for dirname in dirnames: #输出文件夹信息
  6.      print "parent is:" + parent
  7.      print "dirname is" + dirname

  8.     for filename in filenames: #输出文件信息
  9.      print "parent is": + parent
  10.      print "filename is:" + filename
  11.    print "the full name of the file is:" + os.path.join(parent,filename) #输出文件路径信息

阅读(1221) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~