app/|--lib||--seajs|--bussiness||--user|||--model||||--user.js|||--view||||--index.js|||--controller|||--index.js|`--others//其他的一些节点,结构与user一样|--prodution//发布包||--user||--user.js//将bussiness目录下的子目录user下的所有js文件打包成一个节点||--user.html`--static|--index.html`--user.html类似上面的效果,生成的都是文本组成的代码结构图,求含代码的完整例子
2 回答
动漫人物
TA贡献1815条经验 获得超10个赞
Bash(CopiedfromCenterKey)ls-R|grep":$"|sed-e's/:$//'-e's/[^-][^\/]*\//--/g'-e's/^//'-e's/-/|/'Python(CopiedfromStackoverflow)importosdeflist_files(startpath):forroot,dirs,filesinos.walk(startpath):level=root.replace(startpath,'').count(os.sep)indent=''*4*(level)print('{}{}/'.format(indent,os.path.basename(root)))subindent=''*4*(level+1)forfinfiles:print('{}{}'.format(subindent,f))实际上你可以看看这里:Walkadirectory/Recursively
添加回答
举报
0/150
提交
取消