Java的createNewFile() - 它还会创建目录吗?

问题描述 投票:76回答:6

我有条件在继续之前检查某个文件是否存在(./logs/error.log)。如果找不到,我想创建它。但是,会的

File tmp = new File("logs/error.log");
tmp.createNewFile();

如果它不存在,还会创建logs/

java file io directory
6个回答
171
投票

没有。 在创建文件之前使用tmp.getParentFile().mkdirs()


19
投票
File theDir = new File(DirectoryPath);
if (!theDir.exists()) theDir.mkdirs();

14
投票
File directory = new File(tmp.getParentFile().getAbsolutePath());
directory.mkdirs();

如果目录已经存在,则不会发生任何事情,因此您不需要任何检查。


4
投票

Java 8风格

Path path = Paths.get("logs/error.log");
Files.createDirectories(path.getParent());

写入文件

Files.write(path, "Log log".getBytes());

阅读

System.out.println(Files.readAllLines(path));

完整的例子

public class CreateFolderAndWrite {

    public static void main(String[] args) {
        try {
            Path path = Paths.get("logs/error.log");
            Files.createDirectories(path.getParent());

            Files.write(path, "Log log".getBytes());

            System.out.println(Files.readAllLines(path));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

3
投票

StringUtils.touch(/path/filename.ext)现在(> = 1.3)也会创建目录和文件(如果它们不存在)。


0
投票

不,如果logs不存在,你会收到java.io.IOException: No such file or directory

Android devs的有趣事实:调用Files.createDirectories()Paths.get()之类的东西在支持min api 26时会起作用。

© www.soinside.com 2019 - 2024. All rights reserved.