JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q64438F
  • License ISC

Like `fs.readdir`, but excludes autogenerated contents for example .DS_Store and Thumbs.db

Package Exports

  • readdir-clean

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 (readdir-clean) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

readdir-clean

NPM version Build Status Coverage Status

Like fs.readdir but excludes autogenerated contents for example .DS_Store and Thumbs.db

const {readdirSync} = require('fs');
const readdirClean = require('readdir-clean');

(async () => {
  readdirSync('.');
  /*=> [
    '.DS_Store',
    '.AppleDouble',
    '.LSOverride',
    'a.txt',
    'b.txt',
    'Thumbs.db'
  ] */

  await readdirClean('.');
  /*=> [
    'a.txt',
    'b.txt'
  ] */
})();

Installation

Use npm.

npm install readdir-clean

API

const readdirClean = require('readdir-clean');

readdirClean(path)

path: string, Buffer or URL (directory path)
Return: Promise<Array<string>>

Similar to Node.js built-in fs.readdir, but different in the following points:

readdirClean('path/to/dir').then(paths => {
  paths.includes('.Spotlight-V100'); //=> false
  paths.includes('.Trashes'); //=> false
  paths.includes('Desktop.ini'); //=> false
});

License

ISC License © 2017 Shinnosuke Watanabe