directory-to-tree
v0.0.6
Published
This is a tool that will convert a dir to tree
Downloads
6
Readme
根据目录生成字符串树🌲
Demo
可以根据目录生成如下所示的字符串树
directory-to-tree
├-- README.md
├-- bin
│ └-- tree.js
├-- index.js
├-- lib
│ ├-- directoryToObject.js
│ ├-- matrixToTree.js
│ └-- objectToMatrix.js
├-- node_modules
├-- package.json
└-- test
└-- test.spec.js
安装
npm install directory-to-tree -g
使用
tree # 会读取当前目录并生成字符串树
tree -d /home/.../[一个有效的目录路径] # 会读取指定目录并生成字符串树
tree -depth 5[一个整数] # 设置遍历的深度
tree -exclude /node_modules/[一个正则] # 设置忽略的目录
tree -extensions /\.txt$/[一个正则] # 设置只想读取的文件
tree -to /home/.../[一个有效的目录路径] # 设置字符串树生成的文件