跳到主要内容

根据目录生成字符串树

Github Address

NPM version npm GitHub stars GitHub forks

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 @wisestcoder/directory-to-tree -g

使用

tree  # 会读取当前目录并生成字符串树

tree -d /home/.../[一个有效的目录路径] # 会读取指定目录并生成字符串树

tree -depth 5[一个整数] # 设置遍历的深度

tree -exclude /node_modules/[一个正则] # 设置忽略的目录

tree -extensions /\.txt$/[一个正则] # 设置只想读取的文件

tree -to /home/.../[一个有效的目录路径] # 设置字符串树生成的文件