mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
import {readdir} from 'node:fs/promises';
|
|
import {resolve} from 'path';
|
|
|
|
export async function* getFiles(dir: string): AsyncGenerator<string> {
|
|
const dirs = await readdir(dir, {withFileTypes: true});
|
|
for (const dirent of dirs) {
|
|
const res = resolve(dir, dirent.name);
|
|
if (dirent.isDirectory()) {
|
|
yield* getFiles(res);
|
|
} else {
|
|
yield res;
|
|
}
|
|
}
|
|
}
|