Simple node module to transverse files recursively.
npm install @fcostarodrigo/walk
import { walk } from "@fcostarodrigo/walk";
for await (const file of walk()) {
console.log(file);
}
walk(root, lisFolders, walkFolder);
root
: Optional folder to transverse. Defaults to .
.
includeFolders
: Optional flag to list folders. Defaults to false
.
walkFolder
: Optional callback to decide if a folder is going to be transversed.
The function is an async generator that yields the paths of the files recursively.