1.0.0 • Published 8 years ago

list_files v1.0.0

Weekly downloads
10
License
MIT
Repository
github
Last release
8 years ago

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).

Legal Stuff

"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.

1.0.0

8 years ago

0.1.1

12 years ago

0.1.0

12 years ago