http://www.perlmonks.org?node_id=184160


in reply to File Copy

open(my $src, '<', $FileName) or die("ack - $!"); open(my $dest, '>', '/somecomputer/folder/here') or die("ack - $!"); binmode($src); binmode($dest); print $dest $_ while <$src>;
Perhaps. But why on vroom's $theme_coloured monastery would you want to *avoid* using File::Copy?
HTH

_________
broquaint