public static void main(String[] args){ try{ /*查找目錄,,如果不存在,,就創(chuàng)建*/ File dirFile = new File("e:/test"); if(!dirFile.exists()){ if(!dirFile.mkdir()) throw new Exception("目錄不存在,,創(chuàng)建失?。?/span>"); } /*查找文件,,如果不存在,,就創(chuàng)建*/ File file = new File("e:/test/text1.txt"); if(!file.exists()) if(!file.createNewFile()) throw new Exception("文件不存在,創(chuàng)建失??!"); }catch(Exception e){ System.out.println(e.getMessage()); } } |
|