GitSharp.Repository.FileExists C# (CSharp) Method

FileExists() private static method

private static FileExists ( string path ) : bool
path string
return bool
        private static bool FileExists(string path)
        {
            return new FileInfo(path).Exists;
        }