Alexandria.Engines.DarkSouls.Archive.ArchiveFileManager.Exists C# (CSharp) Method

Exists() public method

public Exists ( string path ) : bool
path string
return bool
            public override bool Exists(string path)
            {
                foreach (ArchiveRecord record in Archive.Records)
                    if (record.PathName == path)
                        return true;
                return false;
            }
Archive.ArchiveFileManager