我需要使用Java在另一台电脑中创建一个目录,所以我使用了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();
这个抛出错误。
D:在您正在构建的路径中无效。如果你是远程机器上的管理员,你可以使用D$。路径应为\\MachineName\ShareName\Folder\SubFolder。。。