Resume multi-page download using TransferUtility amazon-s3

Is there a way to do multi-page downloads using the AmazonS3 TransferUtility class, and also be able to resume if the download fails.

+4
source share
1 answer

No, this is not possible using this class.

You need to do this manually using lower level classes, and handle part numbers and ETags in the data structure (persistent).

+3
source

Source: https://habr.com/ru/post/1344940/


All Articles