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 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.
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.
Output:
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.
need an explanation for this answer? contact us directly to get an explanation for this answer