Lists everything inside the provided "path" (or the full tree structure if "recurse" is set), asynchronously.
// common usage: // prints files & folders inside path parrier('the/path/').then(console.log);
// Recursive usage: // prints full tree structure parrier('the/path/', { recurse: true }).then(console.log);
// Getting './' content: // prints files & folders inside './' parrier().then(console.log);
The path from where to get content
The options input
The recurse option which lets us get full tree
Generated using TypeDoc
Lists everything inside the provided "path" (or the full tree structure if "recurse" is set), asynchronously.