how to get all the subfolders and folders from a path in js and node js code example
Example: get all from dir node
const getAllFromDir = source =>
fs.readdirSync(source).map(name => path.join(source, name));
console.log(getDirectories("C:/"));