Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

จะตรวจสอบการมีอยู่ของไฟล์โดยใช้ C # ได้อย่างไร


สมมติว่าเราต้องหาไฟล์ต่อไปนี้ −

E:\new.txt

หากต้องการตรวจสอบการมีอยู่ของไฟล์ข้างต้น ให้ใช้เมธอด Exists() -

if (File.Exists(@"E:\new.txt")) {
   Console.WriteLine("File exists...");
}

นี่คือรหัสที่สมบูรณ์เพื่อตรวจสอบการมีอยู่ของไฟล์ -

ตัวอย่าง

using System;
using System.IO;

public class Demo {
   public static void Main() {
      if (File.Exists(@"E:\new.txt")) {
         Console.WriteLine("File exists...");
      } else {
         Console.WriteLine("File does not exist in the E directory!");
      }
   }
}

ผลลัพธ์

File does not exist in the E directory!