C# 中的 DirectoryNotFoundException


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

在此,我们尝试使用 GetDirectories() 方法查找不存在的目录。

示例

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

由于目录“D:
ew”不存在,因此上面的代码将生成以下异常。

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

更新时间:22-6-2020

724 次浏览

开启您的 职业

通过完成课程获得证书

开始
广告