Patcher.Data.Archives.ArchiveManager.FileExists C# (CSharp) Method

FileExists() public method

public FileExists ( string path ) : bool
path string
return bool
        public bool FileExists(string path)
        {
            foreach (var archive in archives)
            {
                if (archive.Reader.FileExists(path))
                    return true;
            }
            return false;
        }