码迷,mamicode.com
首页 > 编程语言 > 详细

Java 判断文件夹、文件是否存在、否则创建文件夹

时间:2017-03-21 19:17:32      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:gen   cto   tools   dir   span   ack   tle   .net   details   

分类: Java

 

1、判断文件是否存在,不存在创建文件

 

  1. File file=new File("C:\\Users\\QPING\\Desktop\\JavaScript\\2.htm");    
  2. if(!file.exists())    
  3. {    
  4.     try {    
  5.         file.createNewFile();    
  6.     } catch (IOException e) {    
  7.         // TODO Auto-generated catch block    
  8.         e.printStackTrace();    
  9.     }    
  10. }    


 

2、判断文件夹是否存在,不存在创建文件夹

 

  1. File file =new File("C:\\Users\\QPING\\Desktop\\JavaScript");    
  2. //如果文件夹不存在则创建    
  3. if  (!file .exists()  && !file .isDirectory())      
  4. {       
  5.     System.out.println("//不存在");  
  6.     file .mkdir();    
  7. else   
  8. {  
  9.     System.out.println("//目录存在");  
  10. }
  11. http://blog.chinaunix.net/uid-26284395-id-3260936.html  

Java 判断文件夹、文件是否存在、否则创建文件夹

标签:gen   cto   tools   dir   span   ack   tle   .net   details   

原文地址:http://www.cnblogs.com/pengmn/p/6596070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!