文件未复制到路径中

时间:2019-02-25 19:01:07

标签: java file directory

我正在尝试将文件复制到路径,但是在目标路径中不存在过程完成文件之后。任何建议都会有所帮助。

以下是我的代码:

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);

0 个答案:

没有答案