0

I want to Rename Folder Name on dropbox. Only rename the folder not move it to any other destination. /home/ABC after /home/ACB

I want to change only "ABC" to "ACB" any other name. And thanks in advance for your reply and suggestion.

Hari Lal
  • 3
  • 2

1 Answers1

0

Renaming on Dropbox is equivalent to a move (without changing the parent path). To move/rename a file or folder on Dropbox using the Dropbox API, you would use the /2/files/move_v2 endpoint (or corresponding method in an SDK/library).

For your example, for a folder named "ABC" inside a folder named "home", you would set from_path="/home/ABC" and to_path="/home/ACB".

Greg
  • 16,359
  • 2
  • 34
  • 44