我正在尝试将文件复制到路径,但是在目标路径中不存在过程完成文件之后。任何建议都会有所帮助。
以下是我的代码:
String srcPath;
String DesPath;
String src1 = srcPath;
String des = DesPath;
File dir = new File(src1);
File[] files = dir.listFiles();
System.out.println(files[0].getPath());
Path src = Paths.get(files[0].getPath());
Path dst = Paths.get(des + files[0].getName());
Files.copy(src, dst, StandardCopyOption.REPLACE_EXISTING);