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 alreadylinked 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) {
...
}