File.Exists(String)是一个内置的File类方法,用于确定指定文件是否存在。如果调用方具有必需的权限并且路径包含现有文件的名称,则此方法返回true;否则,此方法返回true。否则为假。另外,如果路径为null,则此方法返回false。
用法:
public static bool Exists (string path);
在此,path是要检查的指定路径。
程序1:在运行下面的代码之前,将创建一个文件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.
相关用法
- C# MathF.Abs()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Exp()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Sqrt()用法及代码示例
- C# Single.IsPositiveInfinity()用法及代码示例
- C# Single.IsNegativeInfinity()用法及代码示例
- C# UInt32.CompareTo()用法及代码示例
- C# Object.GetTypeCode()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.Exists() Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。