node-file-walker:递归遍历文件目录的 Node.js 模块

时间:2024-07-27 09:07:18
【文件属性】:

文件名称:node-file-walker:递归遍历文件目录的 Node.js 模块

文件大小:3KB

文件格式:ZIP

更新时间:2024-07-27 09:07:18

JavaScript

一个简单的文件/目录遍历模块 安装 npm install file-walker 回调参数 files - 当前目录中的文件/目录数组,例如['dummy', 'test.js'] dir - 目录名,例如'./test' level - 当前目录级别从0开始 示例用法 假设我们有以下目录结构 ./test/ +- a.js +- b/ +- c.js +- d.js var walk = require ( 'file-walker' ) ; walk ( './directory' , function ( dir , files , level ) { // 1st iteration, level = 0, dir = './test', files = ['a.js', 'b'] // 2nd iteration, leve


【文件预览】:
node-file-walker-master
----.travis.yml(59B)
----test()
--------test.js(713B)
--------dummy()
----file-walker.js(925B)
----README.md(814B)
----package.json(439B)

网友评论