Java 的 createNewFile() - 它也会创建目录吗?
我有一个条件来在继续之前检查某个文件是否存在(./logs/error.log
)。如果没有找到我想创建它。但是,
File tmp = new File("logs/error.log");
tmp.createNewFile();
如果 logs/
不存在,也会创建它吗?
I've got a conditional to check if a certain file exists before proceeding (./logs/error.log
). If it isn't found I want to create it. However, will
File tmp = new File("logs/error.log");
tmp.createNewFile();
also create logs/
if it doesn't exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
编号
在创建文件之前使用
tmp.getParentFile().mkdirs()
。No.
Use
tmp.getParentFile().mkdirs()
before you create the file.如果目录已经存在,则不会发生任何事情,因此您不需要任何检查。
If the directories already exist, nothing will happen, so you don't need any checks.
Java 8 样式
写入文件
读取
完整示例
Java 8 Style
To write on file
To read
Full example
StringUtils.touch(/path/filename.ext)
现在 (>=1.3) 还会创建目录和文件(如果它们不存在)。StringUtils.touch(/path/filename.ext)
will now (>=1.3) also create the directory and file if they don't exist.不,如果
logs
不存在,您将收到java.io.IOException:没有这样的文件或目录
Android开发人员的有趣事实:调用类似
Files.createDirectories()
和Paths.get()
在支持 min api 26 时可以工作。No, and if
logs
does not exist you'll receivejava.io.IOException: No such file or directory
Fun fact for android devs: calls the likes of
Files.createDirectories()
andPaths.get()
would work when supporting min api 26.