当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。