|
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. |
|
The Actually, what do you want to achieve by segmented download? I'm attempting to speed up transfers. I was able to write a function around GetDownloadStream that is allowing me to do what I want. My download went from 13Mbps to 24Mbps.
(18 May '11, 18:34)
John Hancock
If speed up transfer is desired, please try to enable large buffers as described at http://forum.rebex.net/questions/173/how-to-optimize-transfer-performance-with-uploadbufferlength
(19 May '11, 13:18)
Lukas Matyska ♦♦
|