0

I have large file. I want to upload it to dropbox. Since the file size is too much, I want to divide the file into multiple parts and upload few parts in parallel. So that if one part fails, I can retry upload for only that part.

Is there a way to do that with dropbox-sdk.js or any other method?

Any kind of help is appreciated. Thanks in advance.

2
  • In java, you can use session uploader. "UploadSessionStartUploader" . Not aware of the equivalent JS function Commented Sep 6, 2016 at 10:39
  • @ND003 I found the JS equivalent here dropbox.com/developers/documentation/http/…. But I'm not able to do parallel uploads of parts of a file. Does "UploadSessionStartUploader" supports parallel uploads ? Commented Sep 6, 2016 at 12:33

1 Answer 1

1

If you're referring to dropbox-sdk-js, you can upload a large file using upload sessions:

You can upload multiple different files in parallel using upload sessions, but you can only upload a single file's data serially. That is, for a single file, you can only upload one consecutive piece of data at a time.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

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

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.