I want to do something like this:
File root = new File("C:/file.txt");
but on a folder which is shared on a local network. So lets say the file is on 192.168.1.28 how make it with above command?
Next not working:
File root = new File("//192.168.1.2/file.txt");
File root = new File("\\\\192.168.1.2/file.txt");
File root = new File("\\192.168.1.2/file.txt");
File root = new File("file:\\192.168.1.2/file.txt");
File root = new File("file://192.168.1.2/file.txt");
Thanks a lot.