16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
import { readdir } from "fs-extra";
|
|
import { resolve } from "path";
|
|
|
|
// https://stackoverflow.com/a/45130990
|
|
export async function* getFiles(dir: string): AsyncGenerator<string> {
|
|
const dirents = await readdir(dir, { withFileTypes: true });
|
|
for (const dirent of dirents) {
|
|
const res = resolve(dir, dirent.name);
|
|
if (dirent.isDirectory()) {
|
|
yield* getFiles(res);
|
|
} else {
|
|
yield res;
|
|
}
|
|
}
|
|
}
|