Как редактировать файл в swiftyDropbox?
В моем проекте я загрузил все свои текстовые файлы в Dropbox. Здесь мне нужно напрямую отредактировать загруженный файл в Dropbox, используя swift. Можно ли редактировать файлы в 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)")
}
Надеюсь, поможет.
1 ответ
Решение перенесено из сообщения с вопросом user7756686
Я нашел ответ, и я поделюсь здесь.
_ = 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)") }