MCPcopy
hub / github.com/qax-os/excelize / ZipWriter

Interface ZipWriter

excelize.go:70–74  ·  view source on GitHub ↗

ZipWriter defines an interface for writing files to a ZIP archive. It provides methods to create new files within the archive, add files from a filesystem, and close the archive when writing is complete.

Source from the content-addressed store, hash-verified

68// provides methods to create new files within the archive, add files from a
69// filesystem, and close the archive when writing is complete.
70type ZipWriter interface {
71 Create(name string) (io.Writer, error)
72 AddFS(fsys fs.FS) error
73 Close() error
74}
75
76// Options define the options for opening and reading the spreadsheet.
77//

Callers 10

writeToZipMethod · 0.80
TestOpenReaderFunction · 0.80
TestAddTableFunction · 0.65
TestDeleteChartFunction · 0.65
sharedStringsLoaderMethod · 0.65
TestEncryptFunction · 0.65
TestZip64Function · 0.65
TestRemoveTempFilesFunction · 0.65
GetSheetDimensionMethod · 0.65
SaveAsMethod · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected