EpLibrary.cs.FolderHelper.IsFileExist C# (CSharp) Метод

IsFileExist() публичный статический Метод

Check if the given file path exists
public static IsFileExist ( String path ) : bool
path String the file path to check
Результат bool
        public static bool IsFileExist(String path)
        {
            return File.Exists(path);
        }