检测可弹出设备何时插入(拔出)OS X
我想知道当大容量存储设备插入(或拔出)到 Mac 时如何收到通知。
I am wondering how to be notified when a mass storage device is plugged (or unplugged) to the Mac.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在编写 Cocoa 应用程序,您可以注册 NSWorkspace 通知,在安装或卸载磁盘时触发。
在较低级别(如果您正在编写守护程序或
NSWorkspace
没有为您提供足够的信息,则更合适),您可以使用 磁盘仲裁框架。If you're writing a Cocoa app you can register for NSWorkspace notifications that fire when disks are mounted or unmounted.
At a lower level (more appropriate if you're writing a daemon or
NSWorkspace
doesn't give you enough information) you can use the Disk Arbitration Framework.