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

FileExists() public method

public FileExists ( string path ) : bool
path string
return bool
        public bool FileExists(string path)
        {
            if (!opened)
                throw new InvalidOperationException("Archive not opened");

            return DoFileExists(path);
        }