1

我正在尝试使用 SwiftyDropbox 下载文件,但路径有问题。我在 mi Dropbox “prueba.txt”中有一个文件:

保管箱文件

这是我用来在我的应用程序中下载的代码。

import UIKit
import SwiftyDropbox

let clientDB = DropboxClientsManager.authorizedClient

class Controller: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view.

    DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: self, openURL: {
        (url: URL) -> Void in UIApplication.shared.open(url)
    })

    let fileManager = FileManager.default
    let directoryURL = fileManager.urls(for: .documentDirectory, in: .userDomainMask)[0]
    let destURL = directoryURL.appendingPathComponent("/test.txt")
    let destination: (URL, HTTPURLResponse) -> URL = { temporaryURL, response in
        return destURL
    }

    clientDB?.files.download(path: "/prueba.txt", overwrite: true, destination: destination)
        .response{ response, error in
            if response != nil{
                self.cargarDatosCliente()
                //print (response)
            } else if let error = error{
                print (error)
            }
        }

        .progress{ progressData in
            print(progressData)
        }
    }
}

我尝试了不同的方法,但总是用“路径”得到相同的问题,总是错误是path/not_found/... 我尝试使用其他路径但同样的问题。你可以帮帮我吗?我的错误在哪里?

谢谢!

4

2 回答 2

1

问题是“/prueba.txt”是本地文件路径。Dropbox 希望您为其远程服务器提供文件路径。

您可以使用listFolderlistFolderContinue检索这些内容。

例如,如果您想检索应用或保管箱根文件夹中的文件路径,请使用:

var path = ""
clientDB?.files.listFolder(path: path).response(completionHandler: { response, error in
            if let response = response {
                let fileMetadata = response.entries
                if response.hasMore {
                    // Store results found so far
                    // If there are more entries, you can use `listFolderContinue` to retrieve the rest.
                } else {
                    // You have all information. You can use it to download files.
                }
            } else if let error = error {
                // Handle errors
            }
        })

fileMetadata 包含您需要的路径。例如,您可以像这样获取第一个文件的路径:

let path = fileMetadata[0].pathDisplay
于 2018-10-18T08:35:02.210 回答
1

如果您从 API 获取有关文件的元数据,这将是 FileMetadata 对象的“pathLower”属性。

client?.files.download(path: fileMetadata.pathLower!, overwrite: true, destination: destination)
                            .response { response, error in
                                if let response = response {
                                    print(response)
                                } else if let error = error {
                                    print(error)
                                }
                            }
于 2019-11-04T04:05:28.557 回答