C#如何判断某个文件夹是否存在
时间: 2023-09-08 15:12:06 浏览: 115
c# 判断文件是否存在
3星 · 编辑精心推荐
您可以使用C#中的Directory类中的Exists方法来判断某个文件夹是否存在。示例如下:
```
string folderPath = @"C:\Users\username\Desktop\test";
if (Directory.Exists(folderPath))
{
Console.WriteLine("文件夹存在!");
}
else
{
Console.WriteLine("文件夹不存在!");
}
```
其中,folderPath表示文件夹的路径,如果该文件夹存在,则会输出“文件夹存在!”;否则输出“文件夹不存在!”
阅读全文