Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Net::SFTP;
    $sftp->put( $file, $target_file, \&callback )
     or die( "\nDied : Error $!");
    
  2. or download this
    eval {
     $sftp->put( $file, $target_file, \&callback );
    }<br>
    ...
     writelog(...)
     die("Died Here: Error $!");
    }