Jump to content

How to make a copy-paste program for rapidshare.com links?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
3 replies to this topic

#1
xMBx

xMBx

    Newbie

  • Members
  • Pip
  • 1 posts
I want to make a copy-paste program, that copys all rapidshare.com links from any website i want (so if i add to search box "rapidshare.com" then program copys all the other part of the links - rapidshare.com4532887/example.rar). How hard is it to make? Any tips for making?

#2
Guest_Jordan_*

Guest_Jordan_*
  • Guests

xMBx said:

I want to make a copy-paste program, that copys all rapidshare.com links from any website i want (so if i add to search box "rapidshare.com" then program copys all the other part of the links - rapidshare.com4532887/example.rar). How hard is it to make? Any tips for making?

Sounds fairly simple. You will need to use TCP to connect to the http port and retrieve the HTML data. Next you would use a regular expression to extract all the links. After that you could write them to a list box, file, database, etc.

Posted via CodeCall Mobile

Edited by Jordan, 24 August 2008 - 03:29 PM.


#3
MeTh0Dz

MeTh0Dz

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,119 posts
Web Crawler.

#4
dargueta

dargueta

    Writes binary right handed and hex left handed

  • Moderators
  • 4,720 posts
Actually, if you're a beginner and don't want to deal with the HTTP stuff, you can just use telnet from the command prompt using system(), download the file, and just open the file and search through it.