免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2543 | 回复: 2
打印 上一主题 下一主题

用Python生成目录树 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-20 14:23 |只看该作者 |倒序浏览
这是一个使用Python生成文件、目录树的程序,其中遇到一个问题是:如何确定某个目录下的某一文件是最后一个遍历的文件。因为最后一个遍历的文件前应添加"└─",非最后一个文件前添加"├─"。看了Python的API文档没有找到相关的系统函数。现在做法是:先统计出某个目录下的文件个数,在遍历目录时,当个数相等时,就可以确定该目录遍历结束。
  1. # encoding: utf-8

  2. import os
  3. class dir(object):
  4.         def __init__(self):
  5.                 self.SPACE = ""
  6.                 self.list = []
  7.        
  8.         def getCount(self, url):
  9.                 files = os.listdir(url)
  10.                 count = 0;
  11.                 for file in files:
  12.                         myfile = url + "\\" + file
  13.                         if os.path.isfile(myfile):
  14.                                 count = count + 1
  15.                 return count
  16.         def getDirList(self, url):
  17.                 files = os.listdir(url)
  18.                 fileNum = self.getCount(url)
  19.                 tmpNum = 0
  20.                 for file in files:
  21.                         myfile = url + "\\" + file
  22.                         size = os.path.getsize(myfile)
  23.                         if os.path.isfile(myfile):
  24.                                 tmpNum = tmpNum +1
  25.                                 if (tmpNum != fileNum):
  26.                                         self.list.append(str(self.SPACE) + "├─" + file + "\n")
  27.                                 else:
  28.                                         self.list.append(str(self.SPACE) + "└─" + file + "\n")
  29.                         if os.path.isdir(myfile):
  30.                                 self.list.append(str(self.SPACE) + "├─" + file + "\n")
  31.                                 # change into sub directory
  32.                                 self.SPACE = self.SPACE + "│  "
  33.                                 self.getDirList(myfile)
  34.                             # if iterator of sub directory is finished, reduce "│  "
  35.                                 self.SPACE = self.SPACE[:-4]
  36.                 return self.list
  37.         def writeList(self, url):
  38.                 f = open(url, 'w')
  39.                 f.writelines(self.list)
  40.                 print "ok"
  41.                 f.close()
  42. if __name__ == '__main__':
  43.         d = dir()
  44.         d.getDirList("c:/windows") # input directory
  45.         d.writeList("c:/1.txt") # write to file
复制代码
产生文件的效果图:

论坛徽章:
0
2 [报告]
发表于 2012-07-16 14:43 |只看该作者
你取到的文件列表都放到变量里保存了,取列表变量的最后一个元素不就得到你要遍历的列表的最后一个文件名了?(同一目录下没有文件会重名啊)
是这样吧

论坛徽章:
0
3 [报告]
发表于 2012-07-16 15:45 |只看该作者
敢不敢tree?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP