in reply to FTP within PERL script WITHOUT NET::FTP?

Finding out which modules are installed on your system has already been discussed here and here.
Typing this:
perl -MCPAN -e autobundle
at the command line will give you a list of installed modules.

Also:
perl -M'[module name]' -V
Will tell you whether a module is installed, as I previously explained here