创建文件
File file=new File("time_store.properties");
if(!file.exists()){
try {
file.createNewFile();
System.out.println(file);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
创建文件夹
file.mkir.()..