1. 程式人生 > >os.path python使用遍歷文件夾文件

os.path python使用遍歷文件夾文件

root 文件信息 lba arc 輸出 import nsh ive oot

import os
import os.path
rootdir = “d:\data”                                   # 指明被遍歷的文件夾

for parent,dirnames,filenames in os.walk(rootdir):    #三個參數:分別返回1.父目錄 2.所有文件夾名字(不含路徑) 3.所有文件名字
    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) #輸出文件路徑信息

                                                                         #windows下為:d:\data\query_text\EL_00154
原文鏈接:http://www.cnblogs.com/kaituorensheng/archive/2012/08/14/2638935.html

os.path python使用遍歷文件夾文件