我在 iOS 11 中使用文件应用程序。文件应用程序配置为 iCloud、Google Drive 和 DropBox
能够在 iCloud 和 DropBox 上打开大小 > 200 MB 的文本或 CSV 文件。但是,当我在 Google Drive 上打开大小 > 200 MB 的文本或 CSV 文件时,我看不到文件内容。小文本文件不是 Google Drive 的问题。
当我们使用 UI Kit API - UIDocumentPickerViewController 时,该问题也很明显由于 UIDocumentPicker Apple UIKit API 使用相同的 Files App 界面并表现出相同的行为,我们看到 API 引发了相同的错误。
只要我选择一个大于 200 MB 的文本或 json 或 xml 文件,我就会看到这些日志条目,并调用“documentPickerWasCancelled”事件。
2017-12-22 16:19:30.233311+0530 DocumentPickerTestingGrounds[3036:431736] [DocumentManager] 无法将导入的文件复制到本地容器中(错误域=NSCocoaErrorDomain 代码=4097“来自 pid 2943 的连接”UserInfo={NSDebugDescription=来自 pid 2943 的连接}) 2017-12-22 16:19:30.264298+0530 DocumentPickerTestingGrounds[3036:431689] [UIDocumentLog] UIDocumentPickerViewController : didPickDocumentURLs 用 nil 或 0 URLS 调用
现在我觉得它是 G Drive 的 Google Drive 或 Files 应用程序实现的一个错误。
我无法在线找到有关此问题的任何此类参考材料或错误说明。我尝试删除并重新安装 Google Drive 应用程序。它仍然是相同的行为。
任何指针将不胜感激。