Sounds like you're on a windows machine. I believe perl will support anything that the dos shell will support on filesystems. In other words, if you can't "cd" in dos to \\machine\folder, then perl can't chdir to it (which is the case here).
I would suggest mounting \\machine\folder1 or whatever on one of your drive letters (M:, N:, etc) and THEN chdir'ing in perl to that directory.
--
perl: code of the samurai | [reply] |
| [reply] |
What does the brain-dead COMMAND.COM or CMD.EXE shell have to do with it? 4DOS/4NT has always supported chdir'ing to network paths and UNC names, even though MS's stuff did not. The native change-directory function in the Windows API supports UNC names; if Perl passes through to that unmunged it should work.
| [reply] |
k i taught to do this but it's the way i wanted to do it.
I'll try another way.
thanks anyways
| [reply] |