1.命令提示:
tree /?
2.显示当前目录下的目录树(不显示文件)
tree
3.递归显示目录结构(显示文件,常用于项目说明)
tree /F
4.将显示的内容重定向到txt
tree > info.txt tree /F > info.txt