in reply to Re^3: Open directory - Different Server
in thread Open directory - Different Server
# Change the working directory $ftp->cwd($path) or die "Can't change directory ($host):" . $ftp->message; # Retrieve a recursive directory listing @ls = $ftp->ls('-lR'); $ftp->binary(); foreach $file (parse_dir(\@ls)) { my($name) = @$file; print "$name<br>"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Open directory - Different Server
by holli (Abbot) on Feb 22, 2006 at 17:47 UTC | |
by Anonymous Monk on Feb 23, 2006 at 13:03 UTC |