我正在查看有关FSEvents的apple Developer文档,但是后来在保管箱论坛中,我发现了这个https://forums.dropbox.com/topic.php?id=20771

“我相信不会直接使用fsevents-daemon,而会使用FSEvents API。

fsvents-daemon和FSEvents API之间有什么区别?我想监视Mac OS中的文件系统更改,这对我来说将是有效的解决方案? fseventsd和dbfseventsd(Dropbox's)有什么区别?

最佳答案

FSEvents守护程序-您自己的守护程序读取/ dev / fsevents以获得文件系统通知。
FSEvents API-Mac OS X的fseventsd进程将读取/ dev / fsevents并为您提供文件系统事件通知。

最好运行FSEvents守护程序,因为它来自内核空间,并且比来自用户空间的FSEvents API更快。将FSEvents API与大量目录层次结构一起使用也会占用大量内存。

关于macos - fsevents-daemon与FSEvents API,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12413804/

10-10 20:48