<!-- Thank you for suggesting an idea to make Node.js better. Please fill in as much of the template below as you're able. --> **Is your feature request related to a problem? Please describe.** Please describe the problem you are trying to solve. Recursively list file paths in a directory **Describe the solution you'd like** Please describe the desired behavior. Dir structure like: ``` | a / | |- b / | | |- c / | | | |- d.js | | | |- e.js | | |- f.js | |- g.js ``` Should return ['a/b/c/d.js', 'a/b/c/e.js', 'a/b/f.js', 'a/g.js'] **Describe alternatives you've considered** Please describe alternative solutions or features you have considered. Some public solutions that are synchronous and may be able to made faster: - https://attacomsian.com/blog/nodejs-list-directory-files - https://coderrocketfuel.com/article/recursively-list-all-the-files-in-a-directory-using-node-js - https://stackoverflow.com/questions/26827920/nodejs-recursively-list-files-in-directory --- I wrote a version of this using async/await and typescript [tweet](https://twitter.com/ArrowoodTech/status/1300236323412938753?s=20). Not tested much and needs to be extrapolated for general purpose use If this something the community is interested in I'd be happy to contribute it!