Is there a way to download a file using a rapidshare premium account with c# or java?
-
1Have you asked on the Rapidshare site? – Paddy Jan 12 '10 at 14:21
-
if you get it going, can you post the answer up on here. cheers – harryovers Jan 12 '10 at 14:41
-
maybe it's about time you accept an answer or give some feedback on why the current answers do not suffice for you? – Peter Sep 09 '10 at 17:55
5 Answers
There are Web Helpers in C# ( WebClient ) which lets you download content. See an example here. Now this is the harder way maybe, you might want to see if Rapidshare got an API you can program against, otherwise you need to do the authentication through a webclient, get the image urls and download the images.

- 36,033
- 20
- 126
- 183
of course. you can do it with any language that sends or receives HTTP with cookies. Is there an easy way? Probably not. You may even need a JS interpreter.

- 38,186
- 16
- 91
- 120
Let's not invent the wheel twice! Someone has already created a nice class you can use to download your stuff from rapidshare:
see here : http://sqnco.com/2009/07/simple-rapidshare-download-class-c/
I've just tested it and it works 100%!! There is still some fixing to do on how to display progress of the jobs but the download class itself is very nicely implemented and extremely easy to use!

- 14,221
- 15
- 70
- 110