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

Python遍历目录以及子目录的文件

时间:2017-10-09 18:41:58      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:turn   int   解决   end   usr   log   join   abs   class   

 1 #!/usr/bin/env python3
 2 import os
 3 def bbb(dir_str):
 4     filepaths=[]
 5     abspath = os.path.abspath(dir_str)
 6     for x in os.listdir(abspath):
 7         filepath = os.path.join(abspath,x)
 8         if os.path.isdir(filepath):
 9             bbb(filepath)
10         else:
11             print(filepath)
12             filepaths.append(filepath)
13     return filepaths
14 
15 a=bbb(/home/momo/myfile/mydev/python)
16 print(len,len(a))

 

以上代码中有个问题待解决,在11行输出的文件名并未在12行中全部写入list中,需要查一下问题出在哪

Python遍历目录以及子目录的文件

标签:turn   int   解决   end   usr   log   join   abs   class   

原文地址:http://www.cnblogs.com/chenanan/p/7642177.html

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