Has anyone accessed network disks on Win32 in perl?
e.g.
\\a\b\c
I can't figure out how to quote these properly to perl.
For example,
dir \\a\b\c works, but
perl -e "print qq{hello\n} if -f q{\\a\b\c}" doesn't.
If I map "x:" to "\\a\" then perl -e "print qq{hello\n} if -f q{x:\b\c}"
works. I can't use the map because of another bug.
Thanks.
-Kris