Q:

Golang program to commit or sync data into memory disk

belongs to collection: Golang File Handling Programs

0

In this program, we will create a file and write data into a file, and sync or commit data into the memory disk permanently.

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 commit or sync data into the memory disk is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to commit or sync data
// into memory disk

package main

import "os"
import "fmt"

func main() {
	file, err := os.Create("Demo.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)
	}

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

	err = file.Sync()
	if err != nil {
		fmt.Println("Unable to sync data ", err)
	}
	fmt.Printf("\nData save permanently")

	file.Close()
}

Output:

1 character written into file
Data save permanently

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 "Demo.txt" and write the "Hello World" message into the file. After that, we synced the data into the memory disk using Sync() function and print the "Data save permanently" message 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 write data bytes into a file... >>
<< Golang program to create a copy of the existing fi...