Answers for "hw to display all files in a folder with node js"

5

node js get files in dir

const path = require('path');
const fs = require('fs');

fs.readdir(
  path.resolve(__dirname, 'MyFolder'),
  (err, files) => {
    if (err) throw err;
    
    for (let file of files) {
      console.log(file);
    }
  }
);
Posted by: Guest on September-07-2020
1

get all from dir node

const getAllFromDir = source =>
      fs.readdirSync(source).map(name => path.join(source, name));
      console.log(getDirectories("C:/"));
Posted by: Guest on October-06-2020

Code answers related to "hw to display all files in a folder with node js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language