UNPKG

handler.dts

Version:

A package to manage all discord bot Files

25 lines (21 loc) 549 B
const fs = require('fs'); const path = require('path'); /** * * @param {string} rootPath * @returns {string[]} */ function _(rootPath) { const fileLocations = []; const files = fs.readdirSync(rootPath); for (const file of files) { const filePath = path.join(rootPath, file); if (fs.statSync(filePath).isDirectory()) { fileLocations.push(..._(filePath)); } else { fileLocations.push(filePath); } } return fileLocations; } module.exports = _