我在npm上发现了很多walker,但没有一个使用异步迭代器。 它们中的大多数都使用回调或Promise导致大型目录上的内存泄漏。
最近有没有使用以下模式的库:
async function* walk(dirPath) {
// some magic…
yield filePath;
}
然后像这样使用它:
for await (const filePath of walk('/dir/path')) {
console.log('file path', filePath);
}
答案 0 :(得分:0)
好的,我只是使用同步readdir制作了该walker,它非常快且具有内存效率,我在3分钟内列出了250万个条目,而没有任何内存泄漏。
import path from 'path';
import fs, {Dirent} from 'fs';
function* walk(path:string):IterableIterator<string> {
const entries:Dirent[] = fs.readdirSync(path, {withFileTypes: true});
for (const entry of entries) {
const entryPath:() => string = () => `${path}/${entry.name}`;
if (entry.isFile()) {
yield entryPath();
}
if (entry.isDirectory()) {
yield* walk(entryPath());
}
}
}
用法示例:
for (const path of walk(directoryPath)) {
console.log(path);
}