Saturday 2 December 2017

C# Program to Check the Existence of a File


Code:

using System;
using System.IO;
class Program
{
    static void Main()
    {
        FileInfo info = new FileInfo("C:\\sri\\srip.txt");
        bool exists = info.Exists;
        if (exists == true)
        {
            Console.WriteLine("The File Exists");
        }
        else
        {
            Console.WriteLine("No Such File Found");
        }
        Console.Read();
    }
}


Output:

File Exists


More C# Programs:



















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...