在 C# 中检查文件是否存在

Muhammad Maisam Abbas 2021年3月21日
在 C# 中检查文件是否存在

本教程将介绍在 C# 中检查一个文件是否存在于特定路径中的方法。

使用 C# 中的 File.Exists(path) 函数检查文件是否存在于特定路径中

System.IO 命名空间中的 File.Exits(path) 函数用于检查给定的 path 中是否存在文件。如果 path 中有文件,File.Exists(path) 函数将返回 true,如果 path 中没有文件,则函数将返回 false。以下代码示例向我们展示了如何使用 C# 中的 File.Exists() 函数检查文件是否存在于指定路径中。

using System;
using System.IO;

namespace check_whether_a_file_exists
{
    class Program
    {
        static void Main(string[] args)
        {
            string path = "C:\\Files\\file.txt";
            bool result = File.Exists(path);
            if (result == true)
            {
                Console.WriteLine("File Found");
            }
            else
            {
                Console.WriteLine("File Not Found");
            }
        }
    }
}

输出:

File Found

我们将 file.txt 文件的绝对路径作为参数传递给 File.Exists() 函数,以检查该路径中是否存在该文件。如果你使用的是 Windows,那必须使用\\作为路径分隔符。该代码将打印 File Found,因为实际上在 C:\\Files 目录中有一个文件 file.txt

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp File