control if file exist c# code example
Example: c# check file exists
if (File.Exists(@"D:\myfile.txt")) {
Console.WriteLine("The file exists.");
}
if (File.Exists(@"D:\myfile.txt")) {
Console.WriteLine("The file exists.");
}