http://qs321.pair.com?node_id=659939


in reply to Downloading html content

Hi,

Use LWP::Simple to fetch files from the WWW easily. You could automatically save them to the local filesystem using the mirror() function. E.g. (this is right out of my head, not tested):

use LWP::Simple; # An array of array refs whith remote url and local file my @files = (["http://foo.bar/baz1.html", "C:/.../baz1.html"], ["http://bar.foo/zab2.html", "C:/.../zab2.html"]); for my $duplet (@files) { mirror($duplet->[0], $duplet->[1]); }

A more detailed/specific recipe will require that you tell more about what you are trying to achieve.

Replies are listed 'Best First'.
Re^2: downloading files from websites automatically in windows
by pupun (Initiate) on Jan 03, 2008 at 07:30 UTC
    hi, thanks for ur help. actually, it's like this; there is a particular secured client site in that particular site through the script we have to give the user id and password and once we enter the site the script will access a partcular link and from which the script has to download data(its a link specifying download data item) and then save it in a network drive. OS- windows 2000