fs-synchronizer

Recursively find files in folder and extract file informations.

Usage no npm install needed!

<script type="module">
  import fsSynchronizer from 'https://cdn.skypack.dev/fs-synchronizer';
</script>

README

fs-synchronizer

NPM version build status Test coverage npm download

Recursively find files in folder and extract file informations.

Installation

$ npm i fs-synchronizer

Usage

import { FileSynchronizer } from 'fs-synchronizer';
const sync = new FileSynchronizer({
  root: 'test-utils',
  maxDepth: 2,
  patterns: [{ type: 'include', pattern: 'a*' }],
});

sync.on('file', (fileInfo) => {
  console.log(`Found file: ${fileInfo.filename}`);
});
sync.on('excluded-file', (fileInfo) => {
  console.log(`Excluded file: ${fileInfo.filename}`);
});
sync.on('end', () => {
  console.log('Finished walking');
});
await sync.walk();

License

MIT