0

The issue we dealing with is when moving or copying files in Dropbox server to another folder in Dropbox server. The API requires to send request for each file separately. That takes way too long. Maybe You provide some kind of batch request so I could move more than one files per request? I also know the ability to move all folder content, but it doesn't work on our case, cause we need only subset of files to move. If we try to flush many request at once threw several connections, we get 'Server Unavailable' or 'File Locked' errors and need to repeat request again.

Tl;DR; To move 1000 files that already are in Dropbox server it takes over 30 minutes.

What possible solutions You have to increase the performance?

4
  • Cross-linking with the Dropbox API forum: dropboxforum.com/hc/communities/public/questions/….
    – user94559
    Commented Feb 3, 2015 at 17:26
  • I think there is no way to do this. A possible solution would be to copy the folder and delete the files you don't need.
    – phobic
    Commented Feb 5, 2015 at 12:25
  • DropBox API allows to move folder only with less than 10'000 files in it. Commented Feb 12, 2015 at 11:31
  • We talked with DropBox support, and there is not way to improve performance. We are planning to move to another file storage provider with batch requests support. Commented Feb 12, 2015 at 11:32

1 Answer 1

0

The Dropbox API now provides a batch endpoint for moving files. You can find the documentation here:

https://www.dropbox.com/developers/documentation/http/documentation#files-move_batch

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.