Path filePath = Paths.get(outputDir); "/target/output/"
Path file = null;
Path fileDir = null;
try {
fileDir = Files.createDirectories(filePath);
} catch (IOException e) {
e.printStackTrace();
}
即使删除整个java.nio.file.FileAlreadyExistsException: \target\output
目录并重新运行,我仍然会收到target
异常。有人可以指出我在这里做错了什么吗?
outputDir
的值是从属性文件传入的,是:
path.to.output=/target/output/
我希望在/target/output
中创建每日xml文件,这样才第一次需要创建目录。