@gerhobbelt/recursive-readdir-async v1.0.4-4
recursive-readdir-async
NPM Module to recursive read directory async (non blocking). Returns Promise. Configurable, with callback for extended filtering and progress status. Quiet, NO dependencies. As non blocking module it is perfect to be used in any javascript based Desktop applications.
This module uses Promises and can't be used in old javascript engines.
Installation
For normal usage into a project, you must install as a NPM dependency. The next command will do all the work:
npm install --save recursive-readdir-asyncAfter install, you can use the module using the require key:
// Assign recursive-readdir-async to constant const rra = require('recursive-readdir-async') // use itUsage:
Example of basic usage:
const rra = require('recursive-readdir-async'); const list = await rra.list('.'); console.log(list)const rra = require('recursive-readdir-async'); rra.list('.').then(function(list){ console.log(list) })Example with full features:
const rra = require('recursive-readdir-async'); const options = { mode: rra.LIST, recursive: true, stats: false, ignoreFolders: true, extensions: false, deep: false, realPath: true, normalizePath: true, include: [], exclude: [] } const list = await rra.list('.', options, function (obj, index, total) { console.log(`${index} of ${total} ${obj.path}`) if(obj.name=="folder2") return true;// return true to delete item }) if(list.error) console.error(list.error) else console.log(list)Options
An options object can be passed to configure the module. The next options can be used:
- mode (LIST | TREE) : The list will return an array of items. The tree will return the items structured like the file system. Default: list
 - recursive (true | false) : If true, files and folders of folders and subfolders will be listed. If false, only the files and folders of the select directory will be listed. Default: true
 - stats (true | false) : If true a
 statsobject (with file information) will be added to every item. If false this info is not added. Default: false- ignoreFolders (true | false) : If true and mode is LIST, the list will be returned with files only. If true and mode is TREE, the directory structures without files will be deleted. If false, all empty and non empty directories will be listed. Default: true
 - extensions (true | false) : If true, lowercase extensions will be added to every item in the
 extensionobject property (file.TXT=>info.extension = ".txt"). Default: false- deep (true | false) : If true, folder depth information will be added to every item starting with 0 (initial path), and will be incremented by 1 in every subfolder. Default: false
 - normalizePath (true | false) : Normalizes windows style paths by replacing double backslahes with single forward slahes (unix style). Default: true
 - realPath (true | false) : Computes the canonical pathname by resolving
 .,..and symbolic links. Default: true- include (Array of String) : Positive filter the items: only items which DO (partially or completely) match one of the strings in the
 includearray will be returned. Default: []- exclude (Array of String) : Negative filter the items: only items which DO NOT (partially or completely) match any of the strings in the
 excludearray will be returned. Default: []
Notes
- Counter-intuitive to some folks, an empty 
includearray is treated same as setting it tonull/undefined: no include filter will be applied. Obviously, an emptyexcludearray acts similar: noexcludefilter will be applied. The
includeandexcludeoptions interact.When
modeis TREE- Directories which DO NOT match the 
includecriteria themselves but contain items which DO are kept in the returned items tree. I.e. inclusion of the child has precedence over rejection of the parent. - Directories which DO match one of the 
excludecriteria themselves but contain items which DO NOT will not be kept in the returned items tree. I.e. exclusion of the parent has precedence over remaining of the child. 
When
modeis LISTAs the directory tree is flattened into a list, directories and their children (subdirectories and files) are filtered through the
excludeandincluderules independently, henceincludeandexcludewill only interact when an item matches both filters. See below:Common ground:
modeis LIST or TREEexcludehas precedence overinclude: exclusion rules are applied before the inclusion rules. Hence when an item matches both a string in theincludearray and a string in theexcludearray, the item will be excluded (removed) from the list.
- Directories which DO NOT match the 
 
Object structure
The function will return an object and never throw an error. All errors will be added to the returned object. The return object in LIST mode looks like this:
[
    {
        "name":"item_name",
        "path":"/absolute/path/to/item",
        "fullname":"/absolute/path/to/item/item_name",
        "extension":"",
        "isDirectory": true,
        "stats":{
        }
    },
    {
        "name":"file.txt",
        "path":"/absolute/path/to/item/item_name",
        "fullname":"/absolute/path/to/item/item_name/file.txt",
        "extension":".txt",
        "isDirectory": false,
        "stats":{
        }
    },
    {
        "name":"UCASE.JPEG",
        "path":"/absolute/path/to/item/item_name",
        "fullname":"/absolute/path/to/item/item_name/UCASE.JPEG",
        "extension":".jpeg",
        "isDirectory": false,
        "stats":{
        }
    }
]The same example for TREE mode:
[
    {
        "name":"item_name",
        "path":"/absolute/path/to/item",
        "fullname":"/absolute/path/to/item/item_name",
        "isDirectory": true,
        "stats":{
        },
        "contents": [
            {
                "name":"file.txt",
                "path":"/absolute/path/to/item/item_name",
                "fullname":"/absolute/path/to/item/item_name/file.txt",
                "extension":".txt",
                "isDirectory": false,
                "stats":{
                }
            },
            {
                "name":"UCASE.JPEG",
                "path":"/absolute/path/to/item/item_name",
                "fullname":"/absolute/path/to/item/item_name/UCASE.JPEG",
                "extension":".jpeg",
                "isDirectory": false,
                "stats":{
                }
            }
        ]
    }
]
isDirectoryonly exists ifstats,recursiveorignoreFoldersaretrueormodeis TREE
statsonly exists ifoptions.statsistrue
extensiononly exists ifoptions.extensionsistrueErrors handling
All errors will be added to the returned object. If an error occurs on the main call, the error will be returned like this:
{ "error": { "message": "ENOENT: no such file or directory, scandir '/inexistentpath'", "errno": -4058, "code": "ENOENT", "syscall": "scandir", "path": "/inexistentpath" }, "path":"/inexistentpath" }For errors with files and folders, the error will be added to the item like this:
[ { "name":"item_name", "path":"/absolute/path/to/item", "fullname":"/absolute/path/to/item/item_name", "error":{
    }
}
{
    "name":"file.txt",
    "path":"/absolute/path/to/item",
    "fullname":"/absolute/path/to/item/file.txt",
    "error":{
    }
}]