我在NPM上发现了很多步行者,但没有一个使用异步迭代器。他们中的大多数正在使用回调或承诺导致内存泄漏在巨大的目录上。
是否使用以下模式有任何最近的库:
async function* walk(dirPath) {
// some magic…
yield filePath;
}
然后使用它:
for await (const filePath of walk('/dir/path')) {
console.log('file path', filePath);
}
好吧,我只是使用同步readdir做了这个步行者,它非常快,内存有效,我在3分钟内列出了2500万个条目,而没有任何记忆泄漏。
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);
}