如何使用 java 将文件夹从一个位置移动到另一个位置

How to move folder from one location to another location using java

如何将一个文件夹从一个位置移动到另一个位置? 这是我所做的示例代码,但这里显示的是 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.But 它不起作用。你能建议我吗?

您需要指定目的地的名称,否则它将替换您的 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");