in reply to Net::SFTP::Foreign download to a local directory

Use the method mget:
$sftp->mget('/directory/*.bai', '/home/appltest/cashman') or die "file transfer failed: " . $sftp->error;

Replies are listed 'Best First'.
Re^2: Net::SFTP::Foreign download to a local directory
by mvindell (Initiate) on Jun 10, 2010 at 18:46 UTC
    Beautiful, this worked perfectly! Thank you once again.