在C#中,可以使用Directory.Exists()
方法來檢查指定的目錄是否存在。該方法返回一個布爾值,表示目錄是否存在。
以下是使用Directory.Exists()
方法的示例:
string path = @"C:\Example\Directory";
if (Directory.Exists(path))
{
Console.WriteLine("目錄存在");
}
else
{
Console.WriteLine("目錄不存在");
}
在上面的示例中,我們首先指定了一個目錄路徑path
。然后,使用Directory.Exists()
方法檢查該目錄是否存在。如果存在,我們輸出"目錄存在";如果不存在,我們輸出"目錄不存在"。