Documentation ¶
Overview ¶
Package zip provides support for reading ZIP archives.
See: http://www.pkware.com/documents/casestudies/APPNOTE.TXT
This package does not support ZIP64 or disk spanning.
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type File ¶
type File struct { FileHeader // contains filtered or unexported fields }
type FileHeader ¶
type ReadCloser ¶
type ReadCloser struct { Reader // contains filtered or unexported fields }
func OpenReader ¶
func OpenReader(name string) (*ReadCloser, os.Error)
OpenReader will open the Zip file specified by name and return a ReaderCloser.
func (*ReadCloser) Close ¶
func (rc *ReadCloser) Close() os.Error
Close closes the Zip file, rendering it unusable for I/O.
Click to show internal directories.
Click to hide internal directories.