Cocoa 中的文件观察器
大家好,我正在cocoa中开发一个应用程序。我想不断检查特定位置的文件内容是否更改(例如.NET中的FileSystemWatcher)。请任何人给我一个解决方案。我使用了FSEvent,但它仅监视文件夹的更改...但我需要知道该文件夹中的文件是否已更改..请任何人帮助我......
Hai all, I am developing an application in cocoa.I want to constantly check whether the contents of a file in a particular location is changed or not (like FileSystemWatcher in .NET).Please anyone give me a solution.I used FSEvent but it monitors only folder for changes...But I need to know whether a file in that folder is changed or not ..Please anyone help me ......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您收到包含文件的文件夹的 FSEvent 时,请检查文件的修改日期以查看它是否是已更改的文件。 FSEvent 不提供比这更细的粒度。
When you get an FSEvent for the folder containing your file, check your file's mod date to see if it's the one that changed. FSEvent doesn't offer finer granularity than that.