我在使用 Java 7 的Files
类时遇到了一个看似奇怪的问题。我想在开始编写之前确保我的目录和文件存在以避免 a FileNotFoundException
,并且根据Javadocs,createDirectory
检查“文件是否存在以及如果目录不存在则创建目录”
那么如果它先检查,当目录已经存在时,为什么我对以下代码有问题?
private void writeFile() throws IOException {
// Make sure parent directory and file are ready
File file = "mydirectory/my.file";
File parent = file.getParentFile();
if (parent != null)
Files.createDirectory(parent.toPath()); // Why do I get FileAlreadyExistsException? =[
Files.createFile(file.toPath());
// Do some file writing stuff!
}
我知道我可以只做一个“如果文件不存在则创建”的事情,但我认为这种方法的重点是为我处理所有这些!
异常数据:
java.nio.file.FileAlreadyExistsException: mydirectory
at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsFileSystemProvider.createDirectory(Unknown Source)
at java.nio.file.Files.createDirectory(Unknown Source)