码迷,mamicode.com
首页 > 编程语言 > 详细

python 枚举目录下所有子目录和文件,输出列表

时间:2014-10-22 23:32:40      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   sp   文件   div   on   

#WalkDir函数枚举目录中所有目录和文件,参数(枚举目录输出列表,枚举文件输出列表,要枚举的目录)
def WalkDir(dirlist,filelist,dirname):
    try:
        ls=os.listdir(dirname)
    except:
        print "Access Deny."
    else:
        for fn in ls:
            temp=os.path.join(dirname,fn)
            if (os.path.isdir(temp)):
                dirlist.append(temp)
                WalkDir(dirlist,filelist,temp)
            else:
                filelist.append(temp)
    return dirlist,filelist

 

python 枚举目录下所有子目录和文件,输出列表

标签:style   blog   color   os   for   sp   文件   div   on   

原文地址:http://www.cnblogs.com/arhatlohan/p/4044449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!