DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Snippet For Check File In C#.net
// description of your code here
if (File.Exists(@"C:\findFile.exe"))
{
Console.WriteLine("File Exists");
}
else
{
Console.WriteLine("File does not Exists");
}





