Answers for "nodejs read all files in a directory"

6

node get all files in folder

fs.readdir('./', (err, files) => {
    files.forEach(file => {
    //   console.log(file);
})});
Posted by: Guest on March-15-2021
0

how to read all files in a folder in node js

fs.readdir('./', (err, files) => {
        files.forEach(file => {
        //   console.log(file);
        }});
Posted by: Guest on February-08-2021

Code answers related to "nodejs read all files in a directory"

Code answers related to "Javascript"

Browse Popular Code Answers by Language