fs-readdir-recursive
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/fs-readdir-recursive package

1.1.0 • Public • Published

fs.readdirSyncRecursive

NPM version Build status Test coverage Dependency Status License Downloads Gittip

Read a directory recursively.

Install

npm install fs-readdir-recursive

Example

var read = require('fs-readdir-recursive')
read(__dirname) === [
  'test/test.js',
  'index.js',
  'LICENSE',
  'package.json',
  'README.md'
]

API

read(root [, filter])

root is the directory you wish to scan. filter is an optional filter for the files with three params(name, index, dir). By default, filter is:

function (name) {
  return name[0] !== '.'
}

Which basically just ignores . files.

Readme

Keywords

none

Package Sidebar

Install

npm i fs-readdir-recursive

Weekly Downloads

3,148,914

Version

1.1.0

License

MIT

Last publish

Collaborators

  • coderhaoxin
  • fengmk2
  • dead_horse
  • swatinem
  • jongleberry
  • dead-horse