2

我开发了一个应用程序,用于从应用程序将文件保存到 iCloud 驱动器。

我正在将我的应用程序中的文件保存到 iCloud 驱动器。所以它按预期工作。它使用 iCloud 驱动器应用程序中保存的文件创建我的应用程序文件夹。但是,如果我删除该文件夹并尝试从我的应用程序中再次保存该文件,

它给出如下错误:

“file.txt”无法移动到“文档”,因为前者不存在,或者包含后者的文件夹不存在。

这个问题我只在 iOS11 中遇到。在 iOS 10 中它可以正常工作。

如何解决这个问题。提前致谢。

4

1 回答 1

1

我发现如果文件夹被删除,您需要重新创建它,它不会自动创建它。所以我会试试这个:

let fileManager = FileManager.default
let iCloudPath = FileManager.default.url(forUbiquityContainerIdentifier: nil)?.appendingPathComponent("DirectoryName")

do { 
    // Try to create the file here
} catch let error {
    // If that operation fails, you print the error and create the folder again
    print(error.localizedDescription)

    do { 
        try fileManager.createDirectory(atPath: iCloudPath!.path, withIntermediateDirectories: true, attributes: nil) }
    catch let error { 
        print("Unable to create directory \(error.localizedDescription)") }
}
于 2019-09-15T10:56:13.893 回答