Source code quote in C#n° 237
April 23, 2016 am30 10:16
/// <summary>
/// Does the file exist?
/// </summary>
/// <param name="path"></path>
/// <returns></returns>
public static bool exists(String path)
{
return File.Exists(path);
}