On 2012-08-08 12:17, Sandip Karale wrote:
use File::Spec::Functions; my $f="foo.txt"; my $d="\\\\\\\\mach\\\\dir";
Try: my $d = '//mach/dir';
print "$f \n"; print "$d \n"; print catfile($d,$f);
-- Ruud -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/