當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java File exists()用法及代碼示例


exists()函數是Java中File類的一部分。此函數確定是否存在以抽象文件名表示的文件或目錄。如果抽象文件路徑存在,則該函數返回true,否則返回false。

函數簽名:

public boolean exists()

用法:


file.exists()

參數:此方法不接受任何參數。

返回值:如果以抽象文件名表示的文件存在或不存在,則函數返回布爾值。

異常:如果對文件的寫訪問被拒絕,則此方法將引發安全性異常

以下示例程序旨在說明exists()函數的用法:

範例1:文件“F:\\program.txt”是F:目錄中的現有文件。

// Java program to demonstrate 
// exists() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program.txt"); 
  
        // Check if the specified file 
        // Exists or not 
        if (f.exists()) 
            System.out.println("Exists"); 
        else
            System.out.println("Does not Exists"); 
    } 
}

輸出:

Exists

範例2:文件“F:\\program1.txt”是可寫的

// Java program to demonstrate 
// exists() method of File Class 
  
import java.io.*; 
  
public class solution { 
    public static void main(String args[]) 
    { 
  
        // Get the file 
        File f = new File("F:\\program1.txt"); 
  
        // Check if the specified file 
        // Exists or not 
        if (f.exists()) 
            System.out.println("Exists"); 
        else
            System.out.println("Does not Exists"); 
    } 
}

輸出:

Does not Exists

注意:程序可能無法在在線IDE中運行。請使用離線IDE並設置文件的路徑。



相關用法


注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 File exists() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。