没有权限查看在打开操作时从 iOS 文档提供者传回的文档
Posted
技术标签:
【中文标题】没有权限查看在打开操作时从 iOS 文档提供者传回的文档【英文标题】:No permission to view document passed back from iOS Document Provider on Open Operation 【发布时间】:2016-04-10 17:19:33 【问题描述】:我正在 ios 9.2 中创建文件/文档提供程序,并且导入和导出操作正常。但是,Open 操作给我带来了麻烦。
我的文档提供程序将示例文件写入其文件提供程序存储,特别是在此位置:
/private/var/mobile/Containers/Shared/AppGroup/41EDED34-B449-4FE0-94BA-4046CC573544/File Provider Storage/test.txt
我已经能够从文档提供程序中读回它并验证数据是正确的。但是,当我尝试读回传递给主机应用程序的 URL 时,我收到权限错误:
Error Domain=NSCocoaErrorDomain Code=257 "The file “test.txt” couldn’t be opened because you don’t have permission to view it." UserInfo=NSFilePath=/private/var/mobile/Containers/Shared/AppGroup/41EDED34-B449-4FE0-94BA-4046CC573544/File Provider Storage/test.txt, NSUnderlyingError=0x15eda7700 Error Domain=NSPOSIXErrorDomain Code=1 "Operation not permitted"
我使用相当简单的代码进行读写,但如果相关,我会在此处包含它:
文件写入:(在我调用dismissGrantingAccessToURL之前在文档提供程序中调用:)
NSString *contents = @"this is a dynamically created text file";
NSLog(@"write to file = %@", fileName);
NSError *err;
[contents writeToFile:fileName
atomically:NO
encoding:NSStringEncodingConversionAllowLossy
error:&err];
文件读取:(在 documentPicker 的宿主应用程序内部调用:didPickDocumentAtURL:)
NSString *readback = [[NSString alloc] initWithContentsOfFile:[url path]
usedEncoding:nil
error:&err];
我从 Apple 的示例代码开始,并阅读了他们的文档,但没有运气解释为什么会失败。
对于我的文件提供程序,只调用了 init: 函数。我不确定这是否正常,或者是否应该为 Open 操作调用其他方法。这是我的初始化代码:
- (instancetype)init
self = [super init];
if (self)
[self.fileCoordinator coordinateWritingItemAtURL:[self documentStorageURL] options:0 error:nil byAccessor:^(NSURL *newURL)
// ensure the documentStorageURL actually exists
NSError *error = nil;
[[NSFileManager defaultManager] createDirectoryAtURL:newURL withIntermediateDirectories:YES attributes:nil error:&error];
];
return self;
我已经验证了上面的错误是nil,newURL如下:
file:///private/var/mobile/Containers/Shared/AppGroup/41EDED34-B449-4FE0-94BA-4046CC573544/File%20Provider%20Storage/
更新:我开始了解主机应用程序无法读取文件的原因。我认为这是因为我在托管应用程序中没有该应用程序组的权限。但是,我认为尝试添加此权限没有意义,因为主机应用程序应与支持适当扩展的任何文档提供程序一起使用。
我猜我的文件提供程序没有被调用(除了它是 init:) 的原因是因为检测到“打开”返回的文件是本地的,所以不需要复制。要传递本地文件,文档说您必须传递一个位于 documentStorageURL 内部的 URL,但(根据定义?)该 URL 将映射到主机应用程序无法访问的应用程序组。
所以我不确定这将如何工作。如果有人能澄清我应该在这里做什么,我将不胜感激。
【问题讨论】:
【参考方案1】:在对文档进行了更多挖掘之后,我终于发现了问题:在尝试访问之前,我需要在 URL 上调用“startAccessingSecurityScopedResource”。
请参阅本文档中“访问沙盒外的文件”的“要求”部分:
https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/DocumentPickerProgrammingGuide/AccessingDocuments/AccessingDocuments.html
【讨论】:
谢谢,这正是我要找的,但是对于 FileProvider Extension...当您导入文档时,您必须在 fileURL 上调用它,因为这些人在iOS 11 中的文件应用程序。 我为返回的 URL 调用了 startAccessingSecurityScopedResource 方法,该方法返回 true,但我仍然无法读取文件内容,并出现与您相同的错误。【参考方案2】:公认的答案是正确的,这里只是一个即时代码:
guard filePath.startAccessingSecurityScopedResource(),
let data = try? Data(contentsOf: filePath) else return
filePath.stopAccessingSecurityScopedResource()
// Do your business
【讨论】:
以上是关于没有权限查看在打开操作时从 iOS 文档提供者传回的文档的主要内容,如果未能解决你的问题,请参考以下文章