EN
C# / .NET - file exists
12
points
In C# / .NET it is possible to check does file exist in following way.
File.Exists
method example
string path = @"C:\path\to\file.txt";
bool exists = File.Exists(path);
Console.WriteLine("File exists: " + (exists ? "Yes" : "No"));
Output:
File exists: No