I need to implement segmented downloads.
Meaning... If there is a file on the server which is 1GB, how can I download it in 100MB segments?
I want to have 10 connections... each downloading 100MB of the file at different offsets:
File.avi.001
File.avi.002
...
File.avi.010
Then, I will concatenate those files once the transfers are complete.
Is this possible with Rebex? I don't see a GetFile() overload with a "length" parameter.
I see that it is possible with PutFile.