在我的项目中,我将所有文本文件上传到了 Dropbox。在这里,我需要使用swift直接在 Dropbox 中编辑上传的文件。是否可以在Dropbox中编辑文件?(或)是否可以在 Dropbox 中覆盖相同的文件名?任何帮助将不胜感激。
我找到了答案,我将在这里分享。
_ = client?.files.upload(path: path, mode: .overwrite, autorename: false, clientModified: nil, mute: false, input: Description).response { response, error in
if let response = response {
print("The upload response is \(response)")
} else if let error = error {
print("The upload error is \(error)")
}
}
.progress { progressData in
print("The progress Data is \(progressData)")
}
希望能帮助到你。