Q:

Golang program to create an empty zip file

belongs to collection: Golang File Handling Programs

0

In this program, we will create a specified empty zip file using a zip writer 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 an empty zip file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to create an empty zip file

package main

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

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

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

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

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

Output:

Empty.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 "Empty.zip" file using Create() and zip.NewWriter() function 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 zip file containing a t... >>
<< Golang program to read data from file word by word...