python 目录遍历

#coding:utf8

import os
for muluName,zimuluName,fileName in os.walk("H:\\LK"):
    for zimulu in zimuluName:
        print "目录:"+muluName+" 中的子目录:"+zimulu
    for file in fileName:
        print "目录:"+muluName+" 中的文件 :"+file

print ''

原文链接: python 目录遍历 版权所有,转载时请注明出处,违者必究。
注明出处格式:流沙团 ( https://gyarmy.com/post-269.html )

发表评论

0则评论给“python 目录遍历”