我正在尝试遍历文件树并删除所有文件/目录。代码如下:
Files.walkFileTree(metricPath, new SimpleFileVisitor<Path>() {
@Override
public FileVisitResult visitFile(Path file,
BasicFileAttributes attrs) throws IOException {
Files.delete(file);
return FileVisitResult.CONTINUE;
}
@Override
public FileVisitResult postVisitDirectory(Path dir,
IOException exc) throws IOException {
if (exc == null) {
Files.delete(dir);
return FileVisitResult.CONTINUE;
} else {
throw exc;
}
}
});
}
此代码在单元测试之间运行,每个单元测试都生成一个单独的文件,格式为folder1/folder2/file
. 当我尝试走那棵树时,DirectoryNotEmptyException
当 folder1 尝试被删除时抛出 The ,尽管它显然是空的......