in reply to Re^3: Doing an 'ls' in SFTP:Foreign
in thread Doing an 'ls' in SFTP:Foreign

What do you suggest to achieve the same results?

Replies are listed 'Best First'.
Re^5: Doing an 'ls' in SFTP:Foreign
by runrig (Abbot) on Feb 16, 2013 at 20:15 UTC
    I suggest realizing that it returns a reference to an array of hashrefs. If you don't know what that is, read the docs that I've already linked to. You must deference the result to achieve the result you desire. There are even examples within this thread of posts somewhere. Example:
    my $result = $sftp->ls(...); foreach my $f (@$result) { ... }