Help for this page

Select Code to Download


  1. or download this
    @files = $FTP->List();
        @textfiles = $FTP->List("*.txt");
        foreach $file (@textfiles) {
          print "Name: ", $file, "\n";
        }
    
  2. or download this
    @files = $FTP->List("*.*", 2);