public StreamInfo GetStream(string category, string name, bool read = true) { if (name.Length > ZipHelper.MaxFileNameLength) { name = ZipHelper.CalculateHash(name); } return(GetStream(Path.Combine(category, name), read)); }