Q:

Golang program to create a zip file containing a text file

belongs to collection: Golang File Handling Programs

0

In this program, we will create a zip file and then write a text file inside the created zip on the disk.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a zip file containing a text file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to create a zip file
// containing a text file

package main

import "os"
import "fmt"
import "archive/zip"

func main() {
	filePtr, err := os.Create("ABC.zip")
	if err != nil {
		fmt.Println(err)
	}

	// Create a zip writter object using file pointer
	MyZipWriter := zip.NewWriter(filePtr)

	writer, err := MyZipWriter.Create("ABC.txt")
	if err != nil {
		fmt.Println(err)
	}
	_, err = writer.Write([]byte("Sample text"))
	if err != nil {
		fmt.Println(err)
	}

	err = MyZipWriter.Close()
	if err != nil {
		fmt.Println(err)
	}

	filePtr.Close()
	fmt.Println("ABC.zip file is created successfully")
}

Output:

ABC.zip file is created successfully

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmtos packages then we can use a function related to the fmt and os package.

Here, we also imported the "archive/zip" package to use zip writer to create a zip file on the disk.

In the main() function, we created the "ABC.zip" file and then write an "ABC.txt" text file inside the created zip on the disk.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang File Handling Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to create a temp directory in the \... >>
<< Golang program to create an empty zip file...