检测OS X上安装卷的时间

时间:2012-09-13 15:12:36

标签: objective-c macos cocoa volumes

我有一个OS X应用程序需要响应正在安装或卸载的卷。

我已经通过定期检索卷列表并检查更改来解决了这个问题,但我想知道是否有更好的方法。

4 个答案:

答案 0 :(得分:15)

NSWorkspace方法正是我所寻找的那种方式。稍后几行代码,我有一个比使用计时器更好的解决方案。

-(void) monitorVolumes
{
    [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector: @selector(volumesChanged:) name:NSWorkspaceDidMountNotification object: nil];
    [[[NSWorkspace sharedWorkspace] notificationCenter] addObserver:self selector: @selector(volumesChanged:) name:NSWorkspaceDidUnmountNotification object:nil];
}

-(void) volumesChanged: (NSNotification*) notification
{
    NSLog(@"dostuff");
}

答案 1 :(得分:10)

注册到[[NSWorkspace sharedWorkspace] notificationCenter]的通知中心,然后处理您感兴趣的通知。这些是与数量相关的通知:NSWorkspaceDidRenameVolumeNotificationNSWorkspaceDidMountNotificationNSWorkspaceWillUnmountNotificationNSWorkspaceDidUnmountNotification

答案 2 :(得分:2)

你知道SCEvents吗?它允许您在观察文件夹的内容发生更改(/Volumes)时收到通知。这样您就不必使用计时器来定期检查内容。

答案 3 :(得分:2)

Swift 4版本:

在applicationDidFinishLaunching中声明NSWorkspace并为mount和unmount事件添加观察者。

let workspace = NSWorkspace.shared

workspace.notificationCenter.addObserver(self, selector: #selector(didMount(_:)), name: NSWorkspace.didMountNotification, object: nil)
workspace.notificationCenter.addObserver(self, selector: #selector(didUnMount(_:)), name: NSWorkspace.didUnmountNotification, object: nil)

在以下位置捕获装载和卸载事件:

@objc func didMount(_ notification: NSNotification)  {
    if let devicePath = notification.userInfo!["NSDevicePath"] as? String {
        print(devicePath)
    }
}
@objc func didUnMount(_ notification: NSNotification)  {
    if let devicePath = notification.userInfo!["NSDevicePath"] as? String {
        print(devicePath)
    }
}

它将打印设备路径,例如/ Volumes / EOS_DIGITAL 以下是您可以从userInfo中读取的常量。

NSDevicePath, 
NSWorkspaceVolumeLocalizedNameKey
NSWorkspaceVolumeURLKey