Golang program to commit or sync data into memory disk

Here, we are going to learn how to commit or sync data into memory disk in Golang (Go Language)?
Submitted by Nidhi, on April 06, 2021 [Last updated : March 04, 2023]

How to commit or sync data into memory disk in Golang?

Problem Solution:

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

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 code to commit or sync data into memory disk

// 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 fmt, os 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.

Golang File Handling Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.