Created
May 22, 2021 10:52
-
-
Save bennycode/54f80c0a767873ee2645c1eb0c7740c0 to your computer and use it in GitHub Desktop.
List all files in a directory (Node.js)
This file contains hidden or 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
| const fs = require('fs'); | |
| const testFolder = './test/'; | |
| fs.readdirSync(testFolder).forEach(file => { | |
| console.log(file); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment