2.1.5 ā€¢ Published 1 year ago

@igor.dvlpr/recursive-readdir v2.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

šŸ” Recursive readdir()

šŸ“– Provides advanced recursive readdir() and readdirSync() functions with high-level of Node-compatibility and much more. šŸ“

ā“ Did you know? šŸ¤”

I've built this npm module because I needed a reliable and efficient npm module for listing directories while building another one of my projects, a Visual Studio Code extension called New Folder and I needed to create a custom QuickPick dialog allowing the user to pick a root directory.

āœØ Since v.2.0.0 recursive-readdir is a hybrid module that supports both CommonJS (legacy) and ES modules, thanks to Modern Module.

Features

āœ… both class-based and function-based approaches available,

āœ… TypeScript ready, declaration files (d.ts) included,

āœ… recursive traversal,

āœ… maximum depth of traversal configurability,

āœ… file-only filtering,

āœ… directory-only filtering,

āœ… file/directory path name filtering,

āœ… error detection methods,

āœ… file/directory inaccessibility detection methods,

āœ… multiple output formats,

āœ… directories optional trailing slash,

āœ… custom filter function,

āœ… async and sync methods available,

āœ… path-safety, see uPath,

āœ… universal paths supported, see uPath. šŸŽ‰

Usage

Install it by running:

npm i "@igor.dvlpr/recursive-readdir"

API

Ī» Function-based

async function readDir(directory, options): Promise<string[]>

Asynchronously gets files/directories inside the given directory.

Params

directory: String - the directory whose files/directories should be listed,

options: RecursiveDirOptions - additional options.

 function readDirSync(directory, options): string[]

Synchronously gets files/directories inside the given directory.

Params

directory: String - the directory whose files/directories should be listed,

options: RecursiveDirOptions - additional options.

šŸ’Ž Class-based

For own convenience and code-reuse you can use the class-based approach.

Define the options once and (re)call the readDirSync()/readDir() when needed.

class RecursiveDir

Available methods

function readDirSync(directory): string[]

Synchronously gets files/directories inside the given directory.

Params

directory: String - the directory whose files/directories should be listed.

function readDir(directory): Promise<string[]>

Asynchronously gets files/directories inside the given directory.

Params

directory: the directory whose files/directories should be listed.

function entries(value): RecursiveDir

Sets the entries property which controls whether to list files-only, directories-only or both (default).

Params value: Entry - a value with three possible values - provided as class consts,

  • Entry.All,
  • Entry.FilesOnly,
  • Entry.DirectoriesOnly.
function maxDepth(value): RecursiveDir

Sets maxDepth which controls how many child directories' entries are being listed.

Params

value: Depth - the new maxDepth value.

You can use the 2 predefined values or use an arbitrary value. The predefined values are as follows:

  • Depth.All = -1 - return all subdirectories entries,
  • Depth.Root = 0 (default) - return only root directory's entries.

šŸ¤” Why the default value of maxDepth is NOT Depth.All when this module provides recursive and subdirectory file traversal?

āš” Simple, because you need to explicitly set it to that value because traversal through all child subdirectories is very resource/time consuming, just imagine setting the directory parameter to the root of your drive and in conjunction with maxDepth = Depth.All. šŸ˜²

To use arbitrary values the provided value parameter must comply with the expression

i.e.,

The value of 0 means that only directory entries found in the directory specified when calling either readDir() or readDirSync() methods are returned. By increasing the number we can set the depth/level of subdirectories that the method should return, e.g.

maxDepth = Depth.Root

maxDepth(Depth.Root)
// return only the files/directories in the current directory

maxDepth = 3

maxDepth(3)
// return the files/directories in the current director files/directories 3-levels deep

maxDepth = Depth.All

maxDepth(Depth.All)
// return all child files/directories in the current directory
function filter(value): RecursiveDir

Sets filter predicate function used for filtering directory entries (directories/files).

Params

value: FilterCallback - the filter function to use when filtering directory entries.

function addTrailingSlash(value): RecursiveDir

Sets whether a trailing slash should be added to directory entries.

Params

value: boolean - a Boolean indicating whether a trailing slash should be added to directory entries.

Examples

const { readDirSync, Depth, Entry, RecursiveDir } = require('@igor.dvlpr/recursive-readdir')
const testingPath = './somePath'

// Function-based approach

console.log(readDirSync('non-existent-directory')) // returns []

console.log(
  readDirSync(testingPath, {
    maxDepth: Depth.All,
    filter: (entry) => entry.isDirectory,
  })
) // returns only subdirectories (all subdirectories)

// the following can be used interchangeably
console.log(
  readDirSync(testingPath, {
    maxDepth: Depth.All,
    entries: Entry.DirectoriesOnly,
  })
) // returns only subdirectories (all subdirectories)

console.log(
  readDirSync(testingPath, {
    maxDepth: Depth.All,
    entries: Entry.FilesOnly,
    filter: (entry) => entry.path.indexOf('.js') > -1,
  })
) // returns only JavaScript - .js files found in all (sub)directories

// Class-based approach

const dir = new RecursiveDir()

dir
  .maxDepth(Depth.All)
  .entries(Entry.FilesOnly)
  .filter((entry) => entry.path.indexOf('.md') > -1)

console.log(dir.readDirSync(testingPath)) // returns only .md (Markdown) files found in all (sub)directories
2.1.5

1 year ago

2.1.2

2 years ago

2.1.4

2 years ago

2.1.3

2 years ago

2.1.1

3 years ago

2.1.0

3 years ago

2.0.0

3 years ago

1.2.0

3 years ago

1.2.1

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago