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: 2020-06-22T15:32:08+05:30

827 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements