public class a {
public static void main(String[] args) throws IOException {
File f1 = new File("D:\\z\\aaa");
f1.mkdirs();
File f2 = new File(f1, "a.txt");
boolean b = f2.createNewFile();
}
}
05-12
3659
12-07
915
08-03
391