如何将一个文件夹从一个位置移动到另一位置?
这是我所做的示例代码,但此处显示java.nio.file.NoSuchFileException
我正在使用此软件包:
import java.nio.file.Files;import java.nio.file.StandardCopyOption;

Path path1 = FileSystems.getDefault().getPath("D:\\VFSImagecomp\\compressed\\");
Path path2 = FileSystems.getDefault().getPath("D:\\destinitionFile\\");

Files.move(path1, path2, StandardCopyOption.REPLACE_EXISTING);


在这里,我正在尝试将压缩文件夹移到destinitionFile Folder。但是,它不起作用。能否建议我?

最佳答案

您需要指定目的地的名称,否则它将替换您的parent文件夹(因为您正在使用REPLACE_EXISTING

 Path path1 = FileSystems.getDefault().getPath("D:\\VFSImagecomp\\compressed");
 Path path2 = FileSystems.getDefault().getPath("D:\\destinitionFile\\myNewDirectory");


如果您要保持相同的名称,请执行以下操作:

 Path path2 = FileSystems.getDefault().getPath("D:\\destinitionFile\\compressed");

07-25 22:41