Q:

Golang program to create a text file

belongs to collection: Golang File Handling Programs

0

In this program, we will create a text file and save text data into the specified text file.

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 text file is given below. The given program is compiled and executed successfully.

// Golang program to Create a text file

package main

import "fmt"
import "os"

func main() {
	file, err := os.Create("Sample.txt")
	if err != nil {
		fmt.Println("Unable to open file: %s", err)
	}

	len, err := file.WriteString("Hello World")

	if err != nil {
		fmt.Println("Unable to write data: %s", err)
	}
	file.Close()

	fmt.Printf("%d character written successfully into file", len)
}

Output:

11 character written successfully into file

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.

In the main() function, we created a file "Sample.txt" using os.Create() function and write text data into file using WriteString() file. The WriteString() function returns the number of characters written into the file.

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 write and read data from a text ... >>