Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
Alek S.
10 years agoNew member | Level 1
Downloading all the files in a folder using CoreSDK
Since you are deprecating the Datastore and Sync SDKs for iOS. I'll need to redo quite a bit of stuff. Anyway, one of the things I'll need to do now is:
I want to download all the files in a partic...
Steve M.
Dropbox Staff
10 years agoI believe that the Sync SDK employed capped exponential backoff. Pseudocode:
failCount = 0
while true
if attemptDownload().success
break
sleep(min(maxSleep, minSleep * (2**failCount)))
failCount += 1
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!