DirectoryNotFoundException in C#


If a directory you are trying to find does not exist, then DirectoryNotFoundException occurs.

Here, we are try to find a directory that does not exist using GetDirectories() method.

Example

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

The above code will generate the following exception since the directory “D:\
ew” does not exist.

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

Updated on: 22-Jun-2020

651 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements