Last active
July 20, 2023 21:21
-
-
Save tomfa/e1d4ca6f056e2b163aaad6af9fd00ae6 to your computer and use it in GitHub Desktop.
TypeScript: fs.readDir recursive implementation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Walks a directory (fs.readdir but recursively) | |
* Context: | |
* - fs does not have support for walk/readdir recursively | |
* - fs-extra moved "walk" functionality to https://github.com/jprichardson/node-klaw | |
*/ | |
export const listDirectory = async ( | |
currentPath: string, | |
includeDirectories = false, | |
ignorePaths: Array<string> = ['.DS_Store'], | |
): Promise<string[]> => { | |
const dirsAndFiles = fs | |
.readdirSync(currentPath) | |
.filter((f) => !ignorePaths.includes(f)); | |
const directories = dirsAndFiles.filter((f) => | |
fs.lstatSync(path.join(currentPath, f)).isDirectory(), | |
); | |
const result = dirsAndFiles | |
.filter((f) => includeDirectories || !directories.includes(f)) | |
.map((f) => path.join(currentPath, f)); | |
const subResults = await Promise.all( | |
directories.map(async (dir) => { | |
const joinedPath = path.join(currentPath, dir); | |
return listDirectory(joinedPath, includeDirectories); | |
}), | |
); | |
result.push(...subResults.flatMap((s) => s)); | |
return result; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment