Example #1
0
        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));
        }