I am trying to use the Net::FTP module to get a remote file
where file names (could be multiple files) is only partially known.
I am trying the following which is not working
$host = 'myhost'; $user = 'myuser'; $password = 'mypassword'; $dir = "mydir/mysubdir/"; $file = "myfile"; $ftp = Net::FTP->new($host) or die $!; $ftp->login($user,$password) or die $!; $ftp->cwd("$dir") or die "FTP cwd failed : $!\n"; $ftp->put("$myfile*") or die "FTP put failed : $!\n"; $ftp->quit() or die "FTP quit failed : $!\n";
What would be the best way to do this?
Thanks!
In reply to using Net::FTP to get a file without a full name by tariqahsan
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |