I'm making a downloader using C#, I want to add a feature of Pause & Resume download, I googled & implemented the suggestions but it didn't work for me; was resuming from the correct position but had problem merging with the downloaded part. I tested it by downloading a video file but after pausing the download & starting it again the result file played for while (it played the portion which it downloaded before pausing but not the portion after pausing).

How can i merge the 2 portions successfully.

link|improve this question

54% accept rate
1  
crystal balls at the ready....perhaps you should post some code... – Mitch Wheat Oct 15 '10 at 5:40
I bet it might be an offset or an index mismatch when dealing with streams – Laurent Oct 15 '10 at 6:58
i followed the suggestion given here; geekpedia.com/… – KhanZeeshan Oct 15 '10 at 7:11
the only difference is i used WebCLient for downloading after getting the response. – KhanZeeshan Oct 15 '10 at 7:12
@Mitch i'm using this approach can you suggest any other way. you can look at that code for reference. – KhanZeeshan Oct 15 '10 at 9:20
show 1 more comment
feedback

1 Answer

We can't figure out what's wrong with your code, because we can't see your code (it's not always enough to post the source using which you made your own code).

Either way, you can try this: Create a file with some easy to spot bit pattern (like 0101010101010101...) using some hex-editor, and try to see where it breaks. If, for instance, the second part of the download keeps running over the few last bits of the first part, that would give you some clue.

link|improve this answer
@Newwizard thanks man but i figured out problem i was using WebClient in-correctly my Download Always started from the beginning & that was causing the problem in merging now i removed the WebClient & used the WebResponse.GetResponseStream() which fixed my problem. thanks everybody for their help. – KhanZeeshan Oct 17 '10 at 11:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.