1
0
Fork 0
gallery-dl-archive-manager/lib/io.js
2024-02-09 21:13:23 -05:00

11 lines
409 B
JavaScript

import { readdir } from 'fs/promises'
/**
* Gets the directories under the specified source directory
* @param {string} source path to the parent directory
* @returns {Promise<string[]>} the names of the child directories
*/
export const getChildDirectories = async source =>
(await readdir(source, { withFileTypes: true }))
.filter(dirent => dirent.isDirectory())
.map(dirent => dirent.name)