Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在节点中编写一个程序来检测添加到磁盘的文件。我不能对整个磁盘使用 chokidar,如果有很多信息需要很长时间。我正在将 chokidar 与 node-watch 混合使用,当 node-watch 检测到一个文件时,我将其添加到 chokidar 并且我可以关注该文件。问题是 node-watch 只检测到更新(修改和创建),我需要将文件添加到 chikidar 只有当它不存在时(创建),但如果它被更新,它也会被添加。我怎样才能只检测到复制的文件?提前致谢。