Python树结构

时间:2017-03-13 21:23:45

标签: python linux unix tree-structure

我正在尝试使用python为包含多个文件夹的存储库创建树结构。我知道它传统上是通过Linux或Unix完成的。

我的问题是,我是否可以使用任何模块轻松实现这一目标。还是已经创建了一个功能?我附上了一张图片,以便更好地理解我想要完成的任务。

enter image description here

1 个答案:

答案 0 :(得分:0)

这是一个例子,你可以使用' os'文库

import os
Path='project'

fout=open('path.txt','w')
for Name in os.listdir(Path) :
   Pathname= os.path.join(Path,Name)
   print>>fout,Pathname
fout.close()