C#中的DirectoryNotFoundException

如果您要查找的目录不存在,则会发生DirectoryNotFoundException。

在这里,我们尝试使用GetDirectories()method查找一个不存在的目录。

示例

using System.IO;
using System;
class Program {
   static void Main() {
      Directory.GetDirectories("D:\\new\\");
   }
}

由于目录“ D:\\ new”不存在,以上代码将生成以下异常。

Unhandled Exception:
System.IO.DirectoryNotFoundException: Could not find a part of the path