Golang : Create zip/ePub file without compression(use Store algorithm)
Problem :
You need to create zip file without compression. i.e just use the Store algorithm. For example, you are trying to create ePub file, which only uses Store algorithm.
Solution :
By default, Golang's archive/zip
package uses the Store(no compression) algorithm. However, it is best not to assume that the default will always be the same after upgrade. To ensure that the zip/ePub file that are created with Store algorithm. Use the zip.CreateHeader()
function with the following line :
...
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Method = zip.Store // <<<----- here
writer, err := zipit.CreateHeader(header)
if err != nil {
return err
}
or if you want to add more data to the header.
writer, err := zipwriter.CreateHeader(&zip.FileHeader{
Name: filename,
Method: zip.Store,
})
See full example on how to create zip file at : https://www.socketloop.com/tutorials/zip-compress-file-in-go
References :
https://www.socketloop.com/tutorials/zip-compress-file-in-go
See also : Golang : How to tell if a file is compressed either gzip or zip ?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15.4k JavaScript/JQuery : Detect or intercept enter key pressed example
+35.4k Golang : Upload and download file to/from AWS S3
+6.4k PHP : Get client IP address
+8.5k Golang : Configure Apache and NGINX to access your Go service example
+15.5k Golang : Delete certain files in a directory
+9.9k Golang : Eroding and dilating image with OpenCV example
+7.5k Golang : How to convert strange string to JSON with json.MarshalIndent
+39.9k Golang : Remove dashes(or any character) from string
+19.4k Golang : Execute shell command
+14.2k Golang : Human readable time elapsed format such as 5 days ago
+7.1k Golang : Join lines with certain suffix symbol example
+7k Unix/Linux : How to fix CentOS yum duplicate glibc or device-mapper-libs dependency error?