在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()
方法检查目录是否存在。如果存在,我们输出"目录存在";否则,我们输出"目录不存在"。