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


C# File.Exists()用法及代碼示例


File.Exists(String)是一個內置的File類方法,用於確定指定文件是否存在。如果調用方具有必需的權限並且路徑包含現有文件的名稱,則此方法返回true;否則,此方法返回true。否則為假。另外,如果路徑為null,則此方法返回false。

用法:
public static bool Exists (string path);

在此,path是要檢查的指定路徑。



程序1:在運行下麵的代碼之前,將創建一個文件file.txt,其內容如下所示:

file.txt

// C# program to illustrate the usage 
// of File.Exists(String) method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        // Checking the existance of the specified 
        if (File.Exists("file.txt")) { 
            Console.WriteLine("Specified file exists."); 
        } 
        else { 
            Console.WriteLine("Specified file does not "+ 
                      "exist in the current directory."); 
        } 
    } 
}

輸出:

Specified file exists.

程序2:在運行以下代碼之前,不會創建任何文件。

// C# program to illustrate the usage 
// of File.Exists(String) method 
  
// Using System and System.IO namespaces 
using System; 
using System.IO; 
  
class GFG { 
    static void Main() 
    { 
        // Checking the existance of the specified 
        if (File.Exists("file.txt")) { 
            Console.WriteLine("Specified file exists."); 
        } 
        else { 
            Console.WriteLine("Specified file does not"+ 
                    " exist in the current directory."); 
        } 
    } 
}

輸出:

Specified file does not exist in the current directory.



相關用法


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