JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8372814
  • Score
    100M100P100Q235627F
  • License MIT

Get an array of all files in a directory and subdirectories.

Package Exports

  • recursive-readdir

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (recursive-readdir) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

#recursive-readdir

Build Status

A simple Node module for recursively listing all files in a directory, or in any subdirectories.

It does not list directories themselves.

Because it uses fs.readdir, which calls readdir under the hood on OS X and Linux, the order of files inside directories is not guaranteed.

##Installation

npm install recursive-readdir

##Usage

var recursive = require('recursive-readdir');

recursive('some/path', function (err, files) {
  // Files is an array of filename
  console.log(files);
});

It can also take a list of files to ignore.

var recursive = require('recursive-readdir');

// ignore files named 'foo.cs' or files that end in '.html'.
recursive('some/path', ['foo.cs', '*.html'], function (err, files) {
  // Files is an array of filename
  console.log(files);
});

The ignore strings support Glob syntax via minimatch.