spee.ch/tools/getFolderNames.js
2018-03-30 15:27:28 -07:00

10 lines
282 B
JavaScript

const { lstatSync, readdirSync } = require('fs');
const { join } = require('path');
export const getSubDirectoryNames = (root) => {
return readdirSync(root)
.filter(name => {
const fullPath = join(root, name);
return lstatSync(fullPath).isDirectory();
});
};