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