在我的项目中,我将所有文本文件上传到Dropbox。在这里,我需要使用 swift 直接在Dropbox中编辑上传的文件。是否可以编辑 Dropbox 中的文件? (或)是否可以在Dropbox中覆盖相同的fileName? 任何帮助都将受到高度赞赏。
我找到了答案,我将在这里分享。
_ = 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)")
}
希望它有所帮助。