windows cmd 查看文件目录树
Posted 坚果的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows cmd 查看文件目录树相关的知识,希望对你有一定的参考价值。
windows cmd 查看文件目录树
tree /?:命令提示
tree:不输入任何参数,输出一棵目录树
- 不显示文件,只显示目录;
D:.
├─ets
│ ├─FormAbility
│ ├─MainAbility
│ │ └─pages
│ ├─model
│ └─SecondAbility
│ └─pages
├─js
│ ├─widget
│ │ ├─common
│ │ ├─i18n
│ │ └─pages
│ │ └─index
│ └─widget1
│ ├─common
│ ├─i18n
│ └─pages
│ └─index
└─resources
├─base
│ ├─element
│ └─media
├─en_US
│ └─element
├─rawfile
└─zh_CN
└─element
tree /F:递归显示目录结构;
- 显示目录,也显示文件;
- tree /F,在给出项目文件说明时,会十分有用;
D:.
│ config.json
│
├─ets
│ ├─FormAbility
│ │ form.ts
│ │
│ ├─MainAbility
│ │ │ app.ets
│ │ │
│ │ └─pages
│ │ index.ets
│ │ SecondPage.ets
│ │
│ ├─model
│ │ Logger.ets
│ │
│ └─SecondAbility
│ │ app.ets
│ │
│ └─pages
│ index.ets
│
├─js
│ ├─widget
│ │ ├─common
│ │ ├─i18n
│ │ └─pages
│ │ └─index
│ │ index.css
│ │ index.hml
│ │ index.json
│ │
│ └─widget1
│ ├─common
│ │ widget.png
│ │
│ ├─i18n
│ │ zh-CN.json
│ │
│ └─pages
│ └─index
│ index.css
│ index.hml
│ index.json
│
└─resources
├─base
│ ├─element
│ │ color.json
│ │ string.json
│ │
│ └─media
│ icon.png
│
├─en_US
│ └─element
│ string.json
│
├─rawfile
└─zh_CN
└─element
string.json
今天的小技巧就带大家了解到这儿
以上是关于windows cmd 查看文件目录树的主要内容,如果未能解决你的问题,请参考以下文章