[Ssh-sftp-perl-users] RE: Using Net::SSH:Perl login()
Brought to you by:
dbrobins
|
From: Martin M. <m.m...@cg...> - 2004-05-11 00:01:45
|
I had the same problem...
With the tip from Dave, I was able to go around the problem using
utf8::downgrade... my get now works!!!
Thanks
Martin Masson
use utf8;
no utf8;
$remotefile = $currentpath."/".$file->{filename};
utf8::downgrade($remotefile);
$sftp->get($remotefile,$transferpath."/".$file->{filename});
|