I'm trying to create a folder to a mapped network drive Z: using Java
Unfortunately the file is not getting created. This is what I'm doing:
File file = new File("Z:/file1");
file.mkdir();
This code works when not using mapped network drive. This is on Windows environment.
Any ideas?