将自定义文件从iCloud打开到Xamarin.iOS应用程序不起作用



我们有一个Xamarin.iOS应用程序,它声明了一个自定义文件扩展名*.msoisalesbak作为导出类型声明

<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeIdentifier</key>
<string>com.ewsgroup.msoisalesbak</string>
<key>UTTypeConformsTo</key>
<array>
<string>com.pkware.zip-archive</string>
</array>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<string>msoisalesbak</string>
</dict>
<key>UTTypeDescription</key>
<string>MSO&amp;I Sales application backup file</string>
</dict>
</array>

这意味着,每当iOS系统检测到具有此扩展名的文件时,它将提供在我们的应用程序中打开此文件的可能性。

此外,在我们的AppDelegate中,我们有这样一个代码来处理委派文件共享:

public override bool OpenUrl(UIApplication app, NSUrl url, NSDictionary options)
{
..................
var fileHandlerService = ServiceLocator.Container.Resolve<IAssociatedFileHandlerService>();
if(fileHandlerService.CanRestoreDatabaseFromOpenedAssociatedBackupFile(url))
{
...................
string filePath = url.Path;
var destinationPath = "PATH_TO_APP_INTERNAL_FOLDER"
using(FileStream sourceStream = new FileStream(filePath, FileMode.Open, FileAccess.Read))
using(FileStream destinationStream = File.Create(destinationPath))
{
sourceStream.CopyTo(destinationStream);
}
....................
return true;
}
return false;
}

我们基本上会仔细检查文件是否有效以及我们可以处理的内容,然后尝试将文件复制到内部存储并进行一些额外的处理,这与此问题无关。

现在,我们创建应用程序支持的自定义文件,并将其放入iCloud下载文件夹。当我们点击该文件时,我们的应用程序将成功打开,OpenUrl委托将被成功调用。然而,这样我们会收到以下异常

System.IO.DirectoryNotFoundException: Could not find a part of the path "/private/var/mobile/Library/Mobile Documents/com~apple~CloudDocs/Downloads/637569517947945130-0.12.1.msoisalesbak".
at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x00177]

这意味着,由于某种原因,OpenUrl接收到的路径对于我们的应用程序来说是不可访问的。

事实上,如果我们在电子邮件中有自定义文件,或者我们从其他应用程序(如聊天应用程序(打开自定义文件,OpenUrl就可以正常工作(例如Microsoft Teams(。但是,它在iCloud上不起作用。

我们是否应该特别注意允许访问iCloud文件夹?我们错过的是什么?

在你之前"解锁";来自iCloud的文件,您需要调用startAccessingSecurityScopedResource以使安全范围的URL指向的资源可用于应用程序。然后别忘了打电话给stopAccessingSecurityScopedResource

您也可以在Info.plist文件中创建一个新的布尔键LSSupportsOpeningDocumentsInPlace。如果设置为true,url将指向iCloud中的文件,但尚未下载。因此您无法访问该文件。如果设置为false,它将在应用程序沙盒中复制该文件。

相关内容

  • 没有找到相关文章