in reply to Can't load this path into Perl
If you need to deal with file names, see this core module in PathTools: File::Spec .(At least since Perl 5.00405)
my $full_path = File::Spec->catpath( $volume, $directory, $file ); [download]
hth,PooLpi