http://qs321.pair.com?node_id=1195470


in reply to Re^3: Can Perl do anything Java can do?
in thread Can Perl do anything Java can do?

You should be aware that if you specify a path with forward slashes to a Windows instance of perl, the interpreter will usually auto-convert the forward slashes to backslashes for file access. This is a particularly helpful feature when wrapping a Windows path in interpolating delimiters, e.g. double quotes. Obviously, File::Spec et al. represent the most transferable approach.

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.

Replies are listed 'Best First'.
Re^5: Can Perl do anything Java can do?
by Corion (Patriarch) on Jul 19, 2017 at 14:14 UTC

    Actually, it's Windows itself that copes with forward slashes as well as backslashes, not Perl.

    It is mostly the shell and UNC filenames that really need backslashes.