list_files

walk a directory tree recursively

Usage no npm install needed!

<script type="module">
  import listFiles from 'https://cdn.skypack.dev/list_files';
</script>

README

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.