如何查找 Apple App Group 共享目录

How to find Apple App Group shared directory

我们目前正在开发 iOS10 应用,包括 "Messages Extension"。

为了在应用程序和扩展之间共享 CoreDatas 持久性 store.sqlite,我们正在使用一个共享的 "Apple App Group" 目录,它工作正常。

现在由于调试原因,我们不得不访问商店,但找不到目录。 Apps 容器目录完全是空的,这是有道理的。但是如何下载我们的数据库呢?我们是否必须以某种方式以编程方式将其复制到可访问的位置?

总结一下:

如果没有共享目录,我们可以使用 Xcode->Devices 从设备简单地下载 App 容器。但是由于我们确实使用共享目录,所以 .sqlite 数据库不在容器中。

问题: 我们如何将.sqlite 数据库从设备下载到我们的计算机?

2018-10-12 编辑: Swift 4.x (Xcode 10)[ 的更新代码=29=]。 (保留旧版本以供参考。)

在Swift 4.x:

let sharedContainerURL :URL? = FileManager.default.containerURL(forSecurityApplicationGroupIdentifier: "group.etc.etc")
// replace "group.etc.etc" above with your App Group's identifier
NSLog("sharedContainerURL = \(String(describing: sharedContainerURL))")
if let sourceURL :URL = sharedContainerURL?.appendingPathComponent("store.sqlite") {
    if let destinationURL :URL = FileManager().urls(for: .documentDirectory, in: .userDomainMask).first?.appendingPathComponent("copyOfStore.sqlite") {
        try! FileManager().copyItem(at: sourceURL, to: destinationURL)
    }
}

旧版本的Swift(可能是Swift2.x):

let sharedContainerURL :NSURL? = NSFileManager.defaultManager().containerURLForSecurityApplicationGroupIdentifier("group.etc.etc")  // replace "group.etc.etc" with your App Group's identifier
NSLog("sharedContainerURL = \(sharedContainerURL)")
if let sourceURL :NSURL = sharedContainerURL?.URLByAppendingPathComponent("store.sqlite")
{
  if let destinationURL :NSURL = NSFileManager().URLsForDirectory(.DocumentDirectory, inDomains: .UserDomainMask)[0].URLByAppendingPathComponent("copyOfStore.sqlite")
  {
    try! NSFileManager().copyItemAtURL(sourceURL, toURL: destinationURL)
  }
}

类似于上面的内容将从应用程序组的共享容器中获取一个文件到应用程序的文档目录中。从那里,您可以使用 Xcode > Window > 设备将其传输到您的计算机。

Info.plist 文件中将 UIFileSharingEnabled 设置为 YES 后,您还可以使用 iTunes 文件共享从应用程序的文档目录中检索文件,但请记住,这将也向用户公开目录的内容。不过 development/debugging 应该没问题。