Re: Range download

2020-05-19 Thread Andrew Gaul
On Mon, May 18, 2020 at 08:00:16PM -, John Calcote wrote: > I'm trying to create a sort of multi-part download mechanism using jclouds > download with a GetOption of "range". I'd like to just download 5MB ranges > until I run out of file to download. The doc on the use of this option is a >

Re: Range download

2020-05-18 Thread John Calcote
On 2020/05/18 20:00:16, John Calcote wrote: > while (length < size) { Oops! Should have been: while (length >= size) {

Range download

2020-05-18 Thread John Calcote
I'm trying to create a sort of multi-part download mechanism using jclouds download with a GetOption of "range". I'd like to just download 5MB ranges until I run out of file to download. The doc on the use of this option is a bit sparse. Can someone help me understand the semantics of download