I'm trying to retrieve a file with net::ftp. The problem is, I know that it will be in one of two directories, either $year=2005 OR $year=2006. Chances are it will be in 2006, but if not, how do I cwd into 2005 automatically if it does not exist in 2006? I've tried messing w/ '-e' doesn't seem to work with the net::ftp module. I saw net::ftp::file module has an 'exists' option but I don't have/can't get it. This will work if it's in 2006. Any suggestions?
ps took out the error handling business for the post-
Code:
#!/usr/bin/perl -w
use Net::FTP;
$year = `date +%Y`;
chop ($year);
my $host="fileserv";
my $inf='14815';
my $directory="/$year/$inf";
$ftp=Net::FTP->new($host,Timeout=>240) or $newerr=1;
print "Connected...";
$ftp->login('jrig','itsasecret') or $newerr=1;
push @ERRORS, "Can't login to $host: $!\n" if $newerr;
$ftp->quit if $newerr;
print "Logged in\n";
$ftp->cwd($directory) or $newerr=1;
$ftp->quit if $newerr;
print "found dir!\n";
my $head='head';my $tail='tail';
$ftp->get("$head$inf$tail") or print "couldn't get $inf\n";
$ftp->quit;