예제 #1
0
        public override Stream ReadOpen(string path, out FileProperty stat)
        {
            stat = null;
            var prop = GetObjectProperty(path);

            if (!prop.IsFile)
            {
                throw new IOException();
            }
            stat = ToObjectInfo(prop);
            return(rest.Download(prop.ID));
        }