public bool IsParseble() { if (new FileInfo(this.FileName).Length < MinimumZipFileSize) { return(false); } var sigReader = new SignatureReader(this.FileName); return(sigReader.Read32() == JarSignature); }