หากไม่มีไดเร็กทอรีที่คุณพยายามค้นหาอยู่ DirectoryNotFoundException จะเกิดขึ้น
ที่นี่ เรากำลังพยายามค้นหาไดเร็กทอรีที่ไม่มีอยู่โดยใช้เมธอด GetDirectories()
ตัวอย่าง
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