UNC Paths
Hi,
I am using java.util.io package File class to create an instance as following:
File f = new File("\\\\dctm-app1\mydir");
where dctm-app1 is a machine on the network and files and "mydir" is a directory. Now the code works on my development machine which is using JDK 1.4.2, but when deployed on a network machine (which is probably using JVM 1.3.1), it gives an error. Why?
Thanks

