in reply to How do I make Net::FTP use wildcards
use Net::FTP; my $ftp = Net::FTP->new("atd77.acs.org", Debug => 0); $ftp->login("foo",'bar'); my @file_list = $ftp->ls(); foreach (@file_list) { $ftp->get($_); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do I make Net::FTP use wildcards
by rzs96 (Acolyte) on Jun 01, 2005 at 13:50 UTC |