15.遍历目录下的子目录和文件结构输出
Posted luo25236240
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了15.遍历目录下的子目录和文件结构输出相关的知识,希望对你有一定的参考价值。
#encoding=utf-8
import os
for root, dirs, files in os.walk("e:\test2",topdown=False) :
print u"当前目录:",root #打印目录绝对路径
for name in files :
print u‘文件名:‘,os.path.join(root,name) #打印文件绝对路径
for name in dirs :
print u‘目录名:‘,name #打印目录绝对路径
print u"目录路径:",os.path.join(root,name)
以上是关于15.遍历目录下的子目录和文件结构输出的主要内容,如果未能解决你的问题,请参考以下文章
交互式shell脚本遍历文件目录下的所有文件和目录(绝对路径)