[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

HTTP dowloading help

Andrew Walrond

9/22/2003 3:54:00 PM

I wonder if any http experts out there can save me some time...

I currently download files using http with...

def http(server,dir,file)
repeat(server,dir,file) { |localFile|
http = Net::HTTP.new(server)
File.open(localFile,"w") { |dest| http.get(path(dir,file),nil,dest) }
}
end

...which works great for simple links, but fails miserably with more complicated stuff; eg sourceforge.

Anybody got a small bit of code that will handle more complicated stuff?

I could work it out, but my head is already too full and I've avoided touching html so far...

TIA Andrew