Skip to content

emiljohansson/list-files

Repository files navigation

list-files Build Status npm version Coverage Status

Finds all files in a directory and passes them into an array. Can specify the name of sub-directory and match a file extension.

Install

npm install list-files

Usage

var find = require('list-files');

find(function(result) {
    console.log(result);
    //=> './dirname/a.js'
    //=> './dirname/b.js'
}, {
    dir: 'dirname',
    name: 'js'
});

API

find(callback, [argv])

callback

Type: function

Called once the search is complete.

argv

Type: object

Optional options. Possible options 'dir', 'name' and 'exclude'.

License

MIT © Emil Johansson

About

Finds all files in a directory and passes them into an array.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published