Chinaunix首页 | 论坛 | 博客
  • 博客访问: 7113212
  • 博文数量: 3857
  • 博客积分: 6409
  • 博客等级: 准将
  • 技术积分: 15948
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 16:48
个人简介

迷彩 潜伏 隐蔽 伪装

文章分类

全部博文(3857)

文章存档

2017年(5)

2016年(63)

2015年(927)

2014年(677)

2013年(807)

2012年(1241)

2011年(67)

2010年(7)

2009年(36)

2008年(28)

分类:

2012-07-06 03:26:38

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. }  

阅读(284) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~