Highly customizable listing files in given path, both synchronously and asynchronously
npm install catalogist
Then make reference inside yor module...
const catalogist = require('catalogist');
const result1 = await catalogist.list(__dirname);
const result2 = await catalogist.listDeep(__dirname, { levels: 2 });
const result3 = await catalogist.tree(__dirname, { childrenAlias: "data" });
// or
catalogist.list(__dirname, result => {
});
catalogist.listDeep(__dirname, result => {
});
catalogist.tree(__dirname, result => {
});
// or
const result4 = catalogist.listSync(__dirname);
const result5 = catalogist.listDeepSync(__dirname, { levels: 2 });
const result6 = catalogist.treeSync(__dirname, { childrenAlias: "data" });
Returns an array of objects with files properties by running each file in given path
thru iteratee
. The iteratee is invoked with one argument: (stats) - a fs.Stats object provides information about a file (from build-in node.js module "fs");
path
- (string) Start directory to list files from[iteratee]
- (Function) The function invoked per iteration[options]
- (Object) The options object:[options.properties]
- (Array) The list of file's properties to return. By default it icludes "name", "fullName", "path", "fullPath", "ext", "size", "mtime", "isDirectory"[options.ignore]
- (Array) The list of files/directories to skip. By default it skips directories ".git", ".vscode", ".gitignore", ".npmignore", "node_modules"[options.onlyFolders]
- (boolen) If it istrue
only folders/directories will be included in list. By default it isfalse
[options.withSysRoot]
- (boolen) Specifies, weather the full path to the file has to include system root to the givenpath
. By default it isfalse
, so the full path starts from givenpath
[callback]
- (Function) The callback function, returning two arguments: (errError
, listArray
). If callback is not provided, the method returnsPromiss
Array
- the list of objects with files properties
The same as list
, but synchronously;
Returns an array of objects with files properties by running recursively each file/directory in given path
thru iteratee
. The iteratee is invoked with one argument: (stats) - a fs.Stats object provides information about a file (from build-in node.js module "fs");
path
- (string) Start directory to list files from[iteratee]
- (Function) The function invoked per iteration[options]
- (Object) The options object:[options.properties]
- (Array) The list of file's properties to return. By default it icludes "name", "fullName", "path", "fullPath", "ext", "size", "mtime", "isDirectory"[options.ignore]
- (Array) The list of files/directories to skip. By default it skips directories ".git", ".vscode", ".gitignore", ".npmignore", "node_modules"[options.onlyFolders]
- (boolen) If it istrue
only folders/directories will be included in list. By default it isfalse
[options.withSysRoot]
- (boolen) Specifies, weather the full path to the file has to include system root to the givenpath
. By default it isfalse
, so the full path starts from givenpath
[options.levels]
- (number) Specifies, how deep to list directories. By default it isundefined
, so the method returns all child files/directories[callback]
- (Function) The callback function, returning two arguments: (errError
, listArray
). If callback is not provided, the method returnsPromiss
Array
- the list of objects with files properties
The same as listDeep
, but synchronously;
Returns an array of objects with files properties by running recursively each file/directory in given path
thru iteratee
. Children files and directories are inclueded in the property children
as the next list (Array). The iteratee is invoked with one argument: (stats) - a fs.Stats object provides information about a file (from build-in node.js module "fs");
path
- (string) Start directory to list files from[iteratee]
- (Function) The function invoked per iteration[options]
- (Object) The options object:[options.properties]
- (Array) The list of file's properties to return. By default it icludes "name", "fullName", "path", "fullPath", "ext", "size", "mtime", "isDirectory"[options.ignore]
- (Array) The list of files/directories to skip. By default it skips directories ".git", ".vscode", ".gitignore", ".npmignore", "node_modules"[options.onlyFolders]
- (boolen) If it istrue
only folders/directories will be included in list. By default it isfalse
[options.withSysRoot]
- (boolen) Specifies, weather the full path to the file has to include system root to the givenpath
. By default it isfalse
, so the full path starts from givenpath
[options.levels]
- (number) Specifies, how deep to list directories. By default t isundefined
, so the method returns all child files/directories[options.childrenAlias]
- (string) Specifies the name of the property, which will include child files. By default it ischildren
[callback]
- (Function) The callback function, returning two arguments: (errError
, listArray
). If callback is not provided, the method returnsPromiss
Array
- the tree list of objects with files properties
The same as tree
, but synchronously;