fs-readdir-recursive

WebJar for fs-readdir-recursive

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

fs-readdir-recursive
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

fs-readdir-recursive
WebJar for fs-readdir-recursive
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/fs-utils/fs-readdir-recursive

Download fs-readdir-recursive

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/fs-readdir-recursive/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>fs-readdir-recursive</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/fs-readdir-recursive/
implementation 'org.webjars.npm:fs-readdir-recursive:1.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/fs-readdir-recursive/
implementation ("org.webjars.npm:fs-readdir-recursive:1.1.0")
'org.webjars.npm:fs-readdir-recursive:jar:1.1.0'
<dependency org="org.webjars.npm" name="fs-readdir-recursive" rev="1.1.0">
  <artifact name="fs-readdir-recursive" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='fs-readdir-recursive', version='1.1.0')
)
libraryDependencies += "org.webjars.npm" % "fs-readdir-recursive" % "1.1.0"
[org.webjars.npm/fs-readdir-recursive "1.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

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.

Versions

Version
1.1.0
0.1.2