1.0.11 • Published 3 years ago

kc-fwalk v1.0.11

Weekly downloads
8
License
ISC
Repository
github
Last release
3 years ago

FWalk

nodejs Return files in path.

Install

npm install kc-fwalk

Use

var fwalk = require('kc-fwalk');
var files = fwalk('my-dir');
console.log(files);

// If you don't need to list recursively:
var files = fwalk('my-dir', false);
console.log(files);