in reply to RE: Re: Alternative to NET::FTP
in thread Alternative to NET::FTP
After you do that, Perl will look in that directory for any subsequent modules you load. You still have to load Net::FTP:use lib '/your/module/directory';
So you need both those steps (point Perl at the right place, then load the module). You can't compress it into one, as you're trying to do.use Net::FTP; # after the earlier use statement
|
|---|