gpt4 book ai didi

node.js - 为文件夹中的所有文件触发 Chokidar 添加事件

转载 作者:搜寻专家 更新时间:2023-10-31 22:40:50 27 4
gpt4 key购买 nike

当我使用“添加”事件查看带有 Chokidar 的文件夹时,所有现有文件都列为已添加。

这是正确的行为吗?

如何防止列出现有文件并仅显示添加的文件?

“更改”事件按预期工作。

var watcher = chokidar.watch('/My/path', {
ignored: /[\/\\]\./,
persistent: true
});

watcher
.on('change', function(path) { console.log("File " + path + " has been changed"); })
.on('add', function(path) { console.log("File " + path + " has been added"); });

我正在使用 chokidar@1.4.3

/基督教

最佳答案

尝试使用 ignoreInitial 选项:

const watcher = chokidar.watch(DIR_PATH, {
ignoreInitial:true
});

关于node.js - 为文件夹中的所有文件触发 Chokidar 添加事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36413417/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com