阅读量:6
Directory.Exists()方法用于判断指定的文件夹是否存在。该方法接受一个字符串参数,表示文件夹的路径,返回一个布尔值,如果文件夹存在则返回true,否则返回false。
以下是一个示例代码:
using System; using System.IO; class Program { static void Main() { string folderPath = @"C:\Temp"; // 指定文件夹路径 bool folderExists = Directory.Exists(folderPath); // 使用Directory.Exists()判断文件夹是否存在 if (folderExists) { Console.WriteLine("文件夹存在"); } else { Console.WriteLine("文件夹不存在"); } } }
注意:在使用Directory.Exists()判断文件夹是否存在时,需要提供文件夹的完整路径。