You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
503 B
C#

5 years ago
/*
* C# Program to Check the Existence of a File
*/
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();
}
}
/*
File Exists