Q:

Golang program to open a file in append mode

belongs to collection: Golang File Handling Programs

0

In this program, we will open a file in append mode using os.OpenFile() function, after that we write data into the file and read updated data from the file, and print on the console screen.

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 open a file in append mode is given below. The given program is compiled and executed successfully.

// Golang program to open a file in append mode

package main

import "os"
import "io/ioutil"
import "fmt"

func main() {
	data1, err := ioutil.ReadFile("Sample.txt")
	if err != nil {
		fmt.Println("Unable to read data: %s", err)
	}
	fmt.Printf("\nData before appending text: \n%s", data1)

	Myfile, err := os.OpenFile("Sample.txt", os.O_APPEND, 0666)
	if err != nil {
		fmt.Println("Unable to open file")
	}

	len, err := Myfile.WriteString(" Hello India")

	if len == 0 {
		fmt.Printf("File is opened in readonly mode")
	} else {
		fmt.Printf("\n%d characters written into file", len)
	}
	Myfile.Close()

	data2, err := ioutil.ReadFile("Sample.txt")
	if err != nil {
		fmt.Println("Unable to read data: %s", err)
	}
	fmt.Printf("\nData after appending text: \n%s", data2)
}

Output:

Data before appending text:
Hello World
12 characters written into file
Data after appending text:
Hello World Hello India

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 opened the "Sample.txt" file in append mode using os.OpenFile() function and write some text into file. Here we printed file data before and after appending data into the file on the console screen.

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 check a specified file is exists... >>
<< Golang program to open a file in read-only mode...