位置:首頁 > Java技術 > Java.io包 > Java.io.File.exists()方法實例

Java.io.File.exists()方法實例

java.io.File.exists() 方法測試此抽象路徑名定義的文件或目錄是否存在。

聲明

以下是java.io.File.exists()方法的聲明:

public boolean exists()

參數

  • NA

返回值

當且僅當由抽象路徑名確定文件是否存在,則該方法返回布爾值true;否則為false

異常

  • NA

例子

下麵的例子顯示java.io.File.exists()方法的用法。

package com.yiibai;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {
      
      File f = null;
      boolean bool = false;
      
      try{
         // create new files
         f = new File("test.txt");
         
         // create new file in the system
         f.createNewFile();
         
         // tests if file exists
         bool = f.exists();
         
         // prints
         System.out.println("File exists: "+bool);
         
         if(bool == true)
         {
            // delete() invoked
            f.delete();
            System.out.println("delete() invoked");
         }
         
         // tests if file exists
         bool = f.exists();
         
         // prints
         System.out.print("File exists: "+bool);
         
      }catch(Exception e){
         // if any error occurs
         e.printStackTrace();
      }
   }
}

讓我們編譯和運行上麵的程序,這將產生以下結果:

File exists: true
delete() invoked
File exists: false