import java.io.File;
import java.io.IOException;
public class Admin {
public static void main(String... args) {
String path0 = "D:/aa/bb/cc/";
String path1 = "D:/aa/bb/cc/kkk.java";
File f = new File(path0);
// 创建文件夹
if (!f.exists()) {
f.mkdirs();
}
f = new File(path1);
// 创建文件
if (!f.exists()) {
try {
f.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}