my $ftp = Net::FTP->new($host, Debug => 0) or print"Connect: [ERROR]\r\n"; $ftp->login($login, $password) or print"Authorisation:[ERROR]"; $ftp->cwd(); @q = $ftp->ls("."); foreach(@q) { print $_; } $ftp->quit;