NeverMore has asked for the wisdom of the Perl Monks concerning the following question:

Is a different module needed for FTP with ActivePerl? I tried using Net::FTP, but it didn't work. -NM

Replies are listed 'Best First'.
Re: FTP for Win32
by perlcgi (Hermit) on May 29, 2000 at 20:47 UTC
    It should work. You can use either Net::FTP or Win32::Internet. Run it with the debug option if you are having problem
    $ftp = Net::FTP->new($host, Timeout=>30, Debug=>1) or die "Can't connect: $@\n"
Re: FTP for Win32
by Anonymous Monk on May 30, 2000 at 18:35 UTC
    The Net library isn't installed by default in ActivePerl. Run the ppm.bat file in \perl\bin and type "install libnet".