我需要使用Java在另一台PC上创建一个目录,所以我使用了FILE类,
我的代码结构是
String path = "\\\\192.148.64.99"+File.separator+"D:"+File.separator+"hello";
String fname= path+File.separator+"Sample.pdf";
File file = new File(fname);
System.out.println("Exists"+file.exists());
file.getParentFile().mkdirs();
这个抛出错误。