1.0.0 • Published 7 years ago

node-filelist v1.0.0

Weekly downloads
4,267
License
MIT
Repository
github
Last release
7 years ago

node-filelist

Get a list of the absolute path in the file location. This plugin reading all the files in a folder recursively.

Installation

$ npm install node-filelist --save

Usage

For example. If you want to read the image file.

var fl      = require('node-filelist');
var files   = [ "/path-you-want-to-read" ];
var option  = { "ext" : "jpeg|jpg|png|gif" };

fl.read(files, option , function (results){
    for(var i=0; i<results.length; i++){
      console.log(results[i].path);
      //console.log(results[i].stats.mtime);   	// If you want stats.mtime , option.isStats should set true.
    }
});

It will be in the following such a results.

/path-you-want-to-read/sample-1.jpg
/path-you-want-to-read/example-dir/sample-2.jpg
/path-you-want-to-read/sample-3.png
/path-you-want-to-read/sample-4.gif
...

Option

optiondescriptiondefault
extExtension of the file you want to read.all file
isStatsIf you want stats in results.false

Results

resultsdescription
pathThe path of the file that you have read .
statsThe stats of the file that you have read .

License

MIT