Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Edit a file name in Dropbox API

How to edit file or folder name using dropbox api?

I was using this reference: https://www.dropbox.com/developers/core/docs

Is there anything else?
Is it even possible?

like image 251
user990635 Avatar asked Jul 22 '13 07:07

user990635


1 Answers

Your question title and body seem to ask slightly different questions, so I'll answer both:

You can edit a file (i.e., its contents) by uploading a new version of it, e.g., using the /files_put call:

https://www.dropbox.com/developers/core/docs#files_put

You can rename a file or folder using the /filesops/move endpoint:

https://www.dropbox.com/developers/core/docs#fileops-move

like image 166
Greg Avatar answered Sep 30 '22 16:09

Greg