【发布时间】:2015-08-26 09:38:27
【问题描述】:
我需要检测何时在 OS X 中安装卷并获取其完整路径。
我已经成功实现了检测何时安装卷的代码,但是,我仍在努力获取它的路径。
检测何时挂载卷的代码如下所示:
-(void) monitorVolumes
{
// Notification for Mountingthe USB device
[[[NSWorkspace sharedWorkspace] notificationCenter]addObserver:self selector: @selector(onVolumeMount:)
name: NSWorkspaceDidMountNotification object: nil];
// Notification for Un-Mountingthe USB device
[[[NSWorkspace sharedWorkspace] notificationCenter]addObserver:self selector: @selector(onVolumeMount:)
name: NSWorkspaceDidUnmountNotification object: nil];
}
-(void) onVolumeMount: (NSNotification*) notification
{
NSLog(@"Volume Mount");
//Code to get path here...
}
-(void) onVolumeUnmount: (NSNotification*) notification
{
NSLog(@"Volume Unmount");
}
我不知道如何正确获取路径。
如何做到这一点?
【问题讨论】: