如何将文件移动到非空目录?
我是Java的nio包的新手,我不知道如何将文件从一个目录到另一个目录。我的程序应该根据某些条件读取目录及其子目录和进程文件。我可以使用Files.walkFileTree获取所有文件,但是当我尝试移动它们时,我得到一个java.nio.file.AccessDeniedException。
如果我尝试复制它们,我会得到一个 DirectoryNotEmptyException。我无法在谷歌上找到任何帮助。我确信必须有一种简单的方法将文件从一个目录移动到另一个目录,但我无法弄清楚。
这就是我正在尝试获取 DirectoryNotEmptyException 的内容:
private static void findMatchingPdf(Path file, ArrayList cgbaFiles) {
Iterator iter = cgbaFiles.iterator();
String pdfOfFile = file.getFileName().toString().substring(0, file.getFileName().toString().length() - 5) + ".pdf";
while (iter.hasNext()){
Path cgbaFile = (Path) iter.next();
if (cgbaFile.getFileName().toString().equals(pdfOfFile)) {
try {
Files.move(file, cgbaFile.getParent(), StandardCopyOption.REPLACE_EXISTING);
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
}
我正在迭代文件列表,尝试将.meta文件与同名.pdf相匹配。找到匹配项后,我将元数据文件移动到包含 pdf 的目录中。
我得到这个例外: java.nio.file.DirectoryNotEmptyException: C:\test\CGBA-RAC\Part-A at sun.nio.fs.WindowsFileCopy.move(WindowsFileCopy.java:372) at sun.nio.fs.WindowsFileSystemProvider.move(WindowsFileSystemProvider.java:287) at java.nio.file.files.move(Files.java:1347) at cgba.rac.errorprocessor.ErrorProcessor.findMatchingPdf(ErrorProcessor.java:149) at cgba.rac.errorprocessor.ErrorProcessor.matchErrorFile(ErrorProcessor.java:81) atcgba.rac.errorprocessor.ErrorProcessor.main(ErrorProcessor.java:36)