```js
matchFn: (count, canRetryLimit, filePath, suffixes) => {
if (utils.isDirectory(filePath)) {
const files = fs.readdirSync(filePath);
for (const file of files) {
const found = utils.matchFn(count, canRetryLimit, `${filePath}/${file}`, suffixes);
if (found) {
return true;
}
}
} else {
count -= 1;
if (filePath.match(new RegExp(`(${suffixes.join('|')})$`))) {
return true;
}
}
return false;
}
```
我想实现的是递归检查目标文件夹中是不是有命中目标后缀的文件,最多尝试 N 次。
如上是基本实现,但是明显有错,else logic 下 count 没有正确消费上,请问如何改进下呢。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/843242
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.