在C#中,你可以使用System.IO
命名空間中的Directory
類來檢查目錄是否存在。以下是一個示例代碼:
using System;
using System.IO;
class Program
{
static void Main()
{
string path = @"C:\example_directory";
if (Directory.Exists(path))
{
Console.WriteLine("目錄存在");
}
else
{
Console.WriteLine("目錄不存在");
}
}
}
在這個示例中,我們首先導入System.IO
命名空間。然后,我們定義一個字符串變量path
,將其設置為要檢查的目錄路徑。接下來,我們使用Directory.Exists()
方法檢查目錄是否存在。如果存在,我們輸出"目錄存在";否則,我們輸出"目錄不存在"。