tree-cli(踩坑)生成你想要的目录树

由于写README.md时需要用到展示目录树的功能,在搜索了一番后发现tree-cli这个插件符合要求, 够美观了。遂决定使用它~

但是在使用过程中,按照github上的使用说明或者npm上的使用方法都 不能忽略node_modules文件夹。

最终尝试了多种格式后,终于成功~
tree-cli(踩坑)生成你想要的目录树_第1张图片

安装

我安装的版本是0.6.4。

npm i tree-cli

选项

  1. 在options中看到的命令说明如下(仅列举常用):
  • –help: outputs a verbose usage listing.
  • –version: outputs the version of tree-cli.
  • –ignore: ignores directory or file you specify - arrays as comma-delimited strings: ‘node_modules/, .git/, .gitignore’
  • -l: max display depth of the directory tree.
  • -o: send output to filename.
  1. 使用命令treee --help看到的说明如下(仅列举常用):
  • –help, -h: outputs a verbose usage listing.
  • –version: outputs the version of tree-cli.
  • –ignore: ignores directory or file you specify.
  • -l: max display depth of the directory tree.
  • -o: send output to filename.
    并示例:
tree -l 2, -o out.txt --ignore [node_modules, test] -d --noreport

但是这样子后生成的目录树还是包含node_modulus文件夹啊!

踩坑

尝试以上两种方法,都无法成功的忽略node_modules文件夹。
遂搜索。。。又发现了tree -I “node_modules”,尝试后依然失败。
最后使用了三种结合的方法,终于成功。
划重点:要用双引号才行~

tree -l 2, -o out.txt --ignore "node_modules/"

注:在Windows下应该用treee代替tree。

你可能感兴趣的:(tree-cli(踩坑)生成你想要的目录树)