欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java 创建文件夹和文件

程序员文章站 2022-07-01 14:41:31
...
一:判断文件夹是否存在,不存在则创建
String filePath0="C:\\Goa";
File file0=new File(filePath0);
//文件夹是否存在,不存在则创建
if(!file0.exists() && !file0.isDirectory()){
file0.mkdir();
}

二:判断文件是否存在,不存在则创建
String filePath="C:\\Goa\\activeCode.txt";
File file=new File(filePath);
if(!file.exists()){
try {   
        file.createNewFile();   
    } catch (IOException e) {   
        e.printStackTrace();   
    }   
}