码迷,mamicode.com
首页 > 编程语言 > 详细

Java 在给定路径上创建文件,所在文件夹不存在时,如何正确创建。

时间:2020-01-07 16:21:29      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:dir   ring   code   exist   toolbar   shu   mkdir   color   nbsp   

原文链接:https://www.cnblogs.com/shuilangyizu/p/9841640.html   (侵删)

String strPath = "E:\\a\\aa\\aaa.txt";
File file = new File(strPath);
if(!file.exists())){
    file.createNewFile();
}

 

这段代码,如果 E:\a\aa\ 文件夹不存在,会报错。

String strPath = "E:\\a\\aa\\aaa.txt";
File file = new File(strPath);
if(!file.exists())){
    file.file.mkdirs();
}

这段代码,会创建文件夹 E:\\a\\aa\\aaa.txt\。

  String strPath = "E:\\a\\aa\\aaa.txt";
File file = new File(strPath);
File fileParent = file.getParentFile();
if(!fileParent.exists()){
    fileParent.mkdirs();
}
file.createNewFile();

Java 在给定路径上创建文件,所在文件夹不存在时,如何正确创建。

标签:dir   ring   code   exist   toolbar   shu   mkdir   color   nbsp   

原文地址:https://www.cnblogs.com/cmz-32000/p/12161732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!