Firebase存储下载到本地文件错误

时间:2016-10-10 14:07:28

标签: ios swift firebase firebase-storage

我正在尝试从我的Firebase存储中下载图像f5bd8360.jpeg
当我使用dataWithMaxSize:completion将此图像下载到内存时,我可以下载它。

当我尝试使用writeToFile:实例方法将图像下载到本地文件时出现问题。

我收到以下错误:

Optional(Error Domain=FIRStorageErrorDomain Code=-13000 "An unknown
error occurred, please check the server response."
UserInfo={object=images/f5bd8360.jpeg,
bucket=fir-test-3d9a6.appspot.com, NSLocalizedDescription=An unknown
error occurred, please check the server response.,
ResponseErrorDomain=NSCocoaErrorDomain, NSFilePath=/Documents/images,
NSUnderlyingError=0x1700562c0 {Error Domain=NSPOSIXErrorDomain Code=1
"Operation not permitted"}, ResponseErrorCode=513}"

以下是我的Swift代码的片段:

@IBAction func buttonClicked(_ sender: UIButton) {

        // Get a reference to the storage service, using the default Firebase App
        let storage = FIRStorage.storage()

        // Get reference to the image on Firebase Storage
        let imageRef = storage.reference(forURL: "gs://fir-test-3d9a6.appspot.com/images/f5bd8360.jpeg")

        // Create local filesystem URL
        let localURL: URL! = URL(string: "file:///Documents/images/f5bd8360.jpeg")

        // Download to the local filesystem
        let downloadTask = imageRef.write(toFile: localURL) { (URL, error) -> Void in
            if (error != nil) {
                print("Uh-oh, an error occurred!")
                print(error)
            } else {
                print("Local file URL is returned")
            }
        }
    }

我发现another question我遇到了同样的错误,但从未完全回答过。我认为这个提案是对的。我没有权限写入文件。但是,我不知道如何获得权限。有什么想法吗?

1 个答案:

答案 0 :(得分:9)

问题是,在你写这一行时:

let downloadTask = imageRef.write(toFile: localURL) { (URL, error) -> Void in
etc.

您还没有权限写入该localURL)位置。要获得获取权限,您需要在尝试向localURL写入任何内容之前编写以下代码

let documentsURL = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask).first!
let localURL = documentsURL.appendingPathComponent("filename")

通过这样做,您可以将文件写入设备上的以下路径(如果您在真实设备上进行测试): 文件:///var/mobile/Containers/Data/Application/XXXXXXXetc.etc./Documents/filename

如果您在模拟器上进行测试,路径显然会在计算机上的某个位置。