python 遍历一个文件夹下所有文件名称

用python遍历一个文件夹下所有文件名称
可以用字典的方式,程序可参考程序“E:\untitled\weather\extact_copy.py”
#coding=utf-8
import os
import os.path
rootdir = "E:\\weather_data\\pressure\\data_before"     # 指明被遍历的文件夹

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) #输出文件路径信息

 注意:要想python自动读取文件夹下所有文件内容,可以借助字典

你可能感兴趣的:(python 遍历一个文件夹下所有文件名称)