Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

list-files-in-dir

Joge97329MIT0.1.5TypeScript support: included

Lists recursively files in the specified directory.

list, files

readme

list-files-in-dir

Lists recursively files in the specified directory.

Installation

npm install list-files-in-dir --save

Usage

import {listFiles} from 'list-files-in-dir';

// As second parameter you can optionally pass the extension to filter the files
listFiles('example/path')
    .then(files => {
        // do what ever you want with the file paths
    });

Additionally listFilesSync is available.

Tests

npm install
npm test

Dependencies

Dev Dependencies

  • rimraf: A deep deletion module for node (like rm -rf)
  • tslint: An extensible static analysis linter for the TypeScript language
  • typescript: TypeScript is a language for application scale JavaScript development

License

MIT