How to Check if File Exists in C Sharp/C# ?
Hi,
Use the following simple lines of code to check whether a particular file exists or not using C#/C Sharp.
using System;
using System.IO;
static class MainClass
{
static void Main(string[] args)
{
Console.WriteLine(File.Exists("c:yourFile.txt"));
}
}
It will return either True or False depending on whether your file exists or not.
Link to this post!