Help for this page

Select Code to Download


  1. or download this
    use base qw(Net::FTP);   #5.8
    
    ...
      # the super class.
      return $self;
    }
    
  2. or download this
    sub new {
       my ($pkg, $server, $user, $timeout, @args) = @_;
    ...
      my $self = { ftpHandle => $ftp };
      return bless($self, $pkg);
    }