npm.io
1.0.0 • Published 9 years ago

list_files

Licence
MIT
Version
1.0.0
Deps
1
Vulns
0
Weekly
0

list_files

crawls a directory recursively for files.

npm semantic-release Build Status bithound Coverage Status Test Coverage GitHub Issues Dependency Status devDependency Status docs downloads

Quick Examples

var list_files  = require('../lib/list_files').list_files;

var cache = "CACHE MANIFEST\n# version 1\n\nCACHE:\n";

list_files("docroot",
    '',
    /.*\.js$/,
    function(error, file, fstat) {
        // each matching file
        cache += file + "\n";
    },
    function(error) {
        // in the end
        cache += "\nNETWORK:\n";
});

Download

Releases are available for download from
[GitHub](git@github.com:arlac77/list_files.git).

"list_files" is owned by Markus Felten. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.

"Node.js" and "node" are trademarks owned by Joyent, Inc.