如何将一个文件夹从一个位置移动到另一个位置?
以下是我所做的示例代码,但此处显示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文件夹中。但它无法正常工作。可以请你推荐一下吗?
答案 0 :(得分:1)
您需要指定目的地的名称,否则它将替换您的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");