Documentation ¶ Index ¶ type ZipFS func NewZipFS(r *zip.Reader) *ZipFS func (z *ZipFS) Open(name string) (fs.File, error) type ZipFile func (f *ZipFile) Close() error func (f *ZipFile) Read(b []byte) (int, error) func (f *ZipFile) Seek(offset int64, whence int) (int64, error) func (f *ZipFile) Stat() (fs.FileInfo, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type ZipFS ¶ type ZipFS struct { *zip.Reader } func NewZipFS ¶ func NewZipFS(r *zip.Reader) *ZipFS func (*ZipFS) Open ¶ func (z *ZipFS) Open(name string) (fs.File, error) type ZipFile ¶ type ZipFile struct { *zip.File // contains filtered or unexported fields } func (*ZipFile) Close ¶ func (f *ZipFile) Close() error func (*ZipFile) Read ¶ func (f *ZipFile) Read(b []byte) (int, error) func (*ZipFile) Seek ¶ func (f *ZipFile) Seek(offset int64, whence int) (int64, error) func (*ZipFile) Stat ¶ func (f *ZipFile) Stat() (fs.FileInfo, error) Source Files ¶ View all Source files zipfs.go Click to show internal directories. Click to hide internal directories.