热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python生成目录树代码

用Python实现类似Windows下的tree命令,获取目录树结构。importosimportos.pathBRANCH├─LAST_BRANCH└─TAB

用Python实现类似Windows下的tree命令,获取目录树结构。

import os
import os.pathBRANCH = '├─'
LAST_BRANCH
= '└─'
TAB
= ''
EMPTY_TAB
= ' 'def get_dir_list(path, placeholder=''):folder_list = [folder for folder in os.listdir(path) if os.path.isdir(os.path.join(path, folder))]file_list = [file for file in os.listdir(path) if os.path.isfile(os.path.join(path, file))]result = ''for folder in folder_list[:-1]:result += placeholder + BRANCH + folder + '\n'result += get_dir_list(os.path.join(path, folder), placeholder + TAB)if folder_list:result += placeholder + (BRANCH if file_list else LAST_BRANCH) + folder_list[-1] + '\n'result += get_dir_list(os.path.join(path, folder_list[-1]), placeholder + (TAB if file_list else EMPTY_TAB))for file in file_list[:-1]:result += placeholder + BRANCH + file + '\n'if file_list:result += placeholder + LAST_BRANCH + file_list[-1] + '\n'return resultif __name__ == '__main__':print(os.path.dirname(os.getcwd()))print(get_dir_list(os.path.dirname(os.getcwd())))

View Code

 摘自:

  https://www.polarxiong.com/archives/Python-%E7%94%9F%E6%88%90%E7%9B%AE%E5%BD%95%E6%A0%91.html

转:https://www.cnblogs.com/Neeo/p/9199427.html



推荐阅读
author-avatar
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有