java.nio.file.FileAlreadyExistsException:\ target \ output

时间:2015-05-11 10:08:41

标签: java file-io io nio

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文件,这样才第一次需要创建目录。

0 个答案:

没有答案