Thursday, September 10, 2015

see if a file exists with C#

public bool IsAnExistingFile(string filePath)
{
   return File.Exists(filePath);
}

No comments:

Post a Comment