如果需要,使用 Finder 提示用户权限打开下载目录
Open Downloads Directory With Finder Prompting User for Permission If Necessary
我正在构建一个 BitTorrent 客户端,我在其中通过上下文菜单为用户提供一个选项,以打开 torrent 的包含目录。
为此,我尝试使用 NSWorkspace
实例的 open(_)
方法,如下所示:
NSWorkspace.shared.open(directory)
其中 directory
是指向目录的 URL
实例,如下所示:
let directory = URL(fileURLWithPath: item.parentPath, isDirectory: true)
这里,item.parentPath
是一个包含绝对路径的字符串。
现在,让我澄清一下代码运行良好。它在 Finder 中成功打开了我想要的目录(因为它是打开目录的默认应用程序)。
但是,如果该目录恰好是用户的Downloads目录,则显示此提示:
同样,这没关系,因为我的应用程序没有打开 Downloads 目录的权限。但是,我想尝试打开目录,请求许可,就像 macOS 上的任何其他应用程序一样,如下所示:
我在文档中查找并找到了 NSWorkspace
的这个方法:open(_:withApplicationAt:configuration:completionHandler:)
。我认为这很棒,因为我可以将 NSWorkspace.OpenConfiguration
实例的 promptsUserIfNeeded
属性 设置为 true,我相信这应该让我的应用程序礼貌地询问获得在需要时打开目录的权限。
这是我的结果代码:
let url = URL(fileURLWithPath: item.parentPath, isDirectory: true)
let configuration: NSWorkspace.OpenConfiguration = NSWorkspace.OpenConfiguration()
configuration.promptsUserIfNeeded = true
let finder = NSWorkspace.shared.urlForApplication(withBundleIdentifier: "com.apple.finder")
// Open file with default application
NSWorkspace.shared.open([url], withApplicationAt: finder!, configuration: configuration)
遗憾的是,这没有任何区别。我仍然收到与第一张图片所示相同的对话框。
我想知道两件事:
- 我做错了什么?
- 如何打开目录,必要时提示权限?
我假设您希望这一切都能在沙盒中很好地发挥作用。您有两个选择:
如果您愿意,请使用 activateFileViewerSelecting(_:)
or selectFile(_:inFileViewerRootedAtPath:)
. Either of these will prompt for permission, & once gained, you can return to using open(_:withApplicationAt:configuration:completionHandler:)
。
我正在构建一个 BitTorrent 客户端,我在其中通过上下文菜单为用户提供一个选项,以打开 torrent 的包含目录。
为此,我尝试使用 NSWorkspace
实例的 open(_)
方法,如下所示:
NSWorkspace.shared.open(directory)
其中 directory
是指向目录的 URL
实例,如下所示:
let directory = URL(fileURLWithPath: item.parentPath, isDirectory: true)
这里,item.parentPath
是一个包含绝对路径的字符串。
现在,让我澄清一下代码运行良好。它在 Finder 中成功打开了我想要的目录(因为它是打开目录的默认应用程序)。
但是,如果该目录恰好是用户的Downloads目录,则显示此提示:
同样,这没关系,因为我的应用程序没有打开 Downloads 目录的权限。但是,我想尝试打开目录,请求许可,就像 macOS 上的任何其他应用程序一样,如下所示:
我在文档中查找并找到了 NSWorkspace
的这个方法:open(_:withApplicationAt:configuration:completionHandler:)
。我认为这很棒,因为我可以将 NSWorkspace.OpenConfiguration
实例的 promptsUserIfNeeded
属性 设置为 true,我相信这应该让我的应用程序礼貌地询问获得在需要时打开目录的权限。
这是我的结果代码:
let url = URL(fileURLWithPath: item.parentPath, isDirectory: true)
let configuration: NSWorkspace.OpenConfiguration = NSWorkspace.OpenConfiguration()
configuration.promptsUserIfNeeded = true
let finder = NSWorkspace.shared.urlForApplication(withBundleIdentifier: "com.apple.finder")
// Open file with default application
NSWorkspace.shared.open([url], withApplicationAt: finder!, configuration: configuration)
遗憾的是,这没有任何区别。我仍然收到与第一张图片所示相同的对话框。
我想知道两件事:
- 我做错了什么?
- 如何打开目录,必要时提示权限?
我假设您希望这一切都能在沙盒中很好地发挥作用。您有两个选择:
如果您愿意,请使用
activateFileViewerSelecting(_:)
orselectFile(_:inFileViewerRootedAtPath:)
. Either of these will prompt for permission, & once gained, you can return to usingopen(_:withApplicationAt:configuration:completionHandler:)
。