📜  显示 Exists 属性使用的 C# 程序

📅  最后修改于: 2022-05-13 01:54:54.473000             🧑  作者: Mango

显示 Exists 属性使用的 C# 程序

DirectoryInfo 类为创建、移动、删除、重命名和修改目录和子目录提供了不同类型的方法和属性。 Exists 属性是 DirectoryInfo 类的属性。该属性用于检查目录是否存在并相应地返回布尔值。如果目录存在则返回true,否则返回false。如果在确定文件是否存在时发生任何错误,或者指定的文件是否丢失,或者调用者没有获得读取指定文件的权限,它也会返回。

语法

例子:

C#
// C# program to understande the use of Exists Property
using System;
using System.IO;
  
class GFG{
  
static void Main()
{
      
    // Getting the directory information
    DirectoryInfo information = new DirectoryInfo("sravan_directory");
      
    // Checking whether the given directory
    // exists or not
    // Using Exists property
    if (information.Exists)
        Console.WriteLine("Exists");
    else
        Console.WriteLine("Not Exists");
}
}


输出:

Not Exists