« get me outta code hell

io.js « util « src - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/util/io.js
blob: c17e263311473ae975666f99878bc3be85a39f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Utility functions for interacting with files and other external data
// interfacey constructs.

import { readdir } from "fs/promises";
import * as path from "path";

export async function findFiles(
  dataPath,
  { filter = (f) => true, joinParentDirectory = true } = {}
) {
  return (await readdir(dataPath))
    .filter((file) => filter(file))
    .map((file) => (joinParentDirectory ? path.join(dataPath, file) : file));
}