Nah dude, the OP is doign these on OTHER machines. Make the slashies into / will make it look locally on his/her machine and not the target's. | [reply] |
Not true. / and \ are interchangeable in Windows. Both of the following strings are acceptable:
- \\pcname-vm\c$\program files\adobe
- //pcname-vm/c$/program files/adobe
(You can mix and match too)
All of the following Perl string literals create one of those strings:
- "\\\\pcname-vm\\c\$\\program files\\adobe"
- "//pcname-vm/c\$/program files/adobe"
- '\\\\pcname-vm\\c$\\program files\\adobe'
- '\\\pcname-vm\c$\program files\adobe'
- '//pcname-vm/c$/program files/adobe'
| [reply] [d/l] [select] |