fs-deep
v1.0.2
Published
目录结构递归器,获取指定深度的目录树结构
Downloads
3
Readme
fs-deep
目录结构递归器,获取指定深度的目录树结构
使用方法
const fsDeep = require('fs-deep');
const dir = fsDeep('app', { 'layer': 4 });
NFT(dirPath, options)
dirPath
String - 目录路径options
Objectlayer
Number - 递归深度contain
Array - 仅包含指定文件或目录,与exclude互斥,优先级高于exclude(可选)exclude
Array - 排除指定文件或目录,与contain互斥(可选)