How to find out if a file exists in C# / .NET?
This my Answer to the stackoverflow question: How to find out if a file exists in C# / .NET?:using System.IO;
if (File.Exists(path))
{
Console.WriteLine("file exists");
}