19.0文件夹的创建
作者:互联网
package study;
import java.io.File;
public class exercise {
public static void main(String[] args) {
File f=new File("E:\\临时\\2019.6.2");
boolean b1=f.mkdir();//如果上一级文件夹不存在则失败
System.out.println(b1);
boolean b2=f.mkdirs();//无论上一级文件夹是否存在都会成功
//即使不存在也会自动建立
System.out.println(b2);
}
}
标签:19.0,File,boolean,创建,System,文件夹,b1,b2 来源: https://blog.csdn.net/P_ning/article/details/90782998