Mac OS X 监控/观察应用程序安装
我想监控应用程序安装并了解应用程序更改、创建哪些文件等。
我该怎么做?
I would like to monitor an app installation and know what files the app changes, creates and so on.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FSEvents 框架允许应用程序注册给定目录树的更改通知。这使您可以追踪创建、更改或删除的文件。
查看文件系统事件编程指南 由苹果公司提供。
如果您正在寻找 GUI 现有的东西:您可能想尝试 fseventer< /a>
The
FSEvents
framework allows applications to register for notifications of changes to a given directory tree. That allows you to track down created, changed or deleted files.Have a look at the File System Events Programming Guide by Apple.
If you are looking for something existing with GUI: You might want to try fseventer