Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 950 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 950 Bytes

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