
以下是我到目前为止尝试过的代码:
client?.files.download(path: "/AlloyTest/\(imageName)").response { response, error in
if let response = response {
let responseMetadata = response.0
print(responseMetadata)
let fileContents = response.1
print(fileContents)
} else if let error = error {
print(error)
}
}
.progress { progressData in
print(progressData)
}这是我在尝试下面的函数时得到的错误:
API route error - {
".tag" = path;
path = {
".tag" = "not_found";
};
} 新代码
func getImage(imageName: String, completion: @escaping (UIImage, NetworkingError) -> ()) {
// Get Image from dropbox
// Download to Data
client?.files.listFolder(path: "/AlloyTest").response { response, error in
if let response = response {
let entries = response.entries
print("ENTRIES:", entries)
} else if let error = error {
print(error)
}
}
}发布于 2020-05-27 02:09:54
A path/not_found error表示在连接的Dropbox帐户中,指定路径(在本例中为"/AlloyTest/\(imageName)" )中没有任何内容。确保您提供了正确的路径。
例如,您可以使用listFolder/listFolderContinue列出任何特定文件夹的内容,以获取其内容的正确路径值。任何特定返回项的路径都是Metadata.pathLower。
https://stackoverflow.com/questions/62027757
复制相似问题