How to update content of a text file?
In below example first character of a text file updated using WriteAt function which writes len(b) bytes to the File starting at byte offset off. It returns the number of bytes written and an error, if any.
"Po" has been updated by "Go" in below example.
Example
package main
import (
"io/ioutil"
"log"
"fmt"
"os"
)
func Beginning() {
// Read Write Mode
file, err := os.OpenFile("test.txt", os.O_RDWR, 0644)
if err != nil {
log.Fatalf("failed opening file: %s", err)
}
defer file.Close()
len, err := file.WriteAt([]byte{'G'}, 0) // Write at 0 beginning
if err != nil {
log.Fatalf("failed writing to file: %s", err)
}
fmt.Printf("\nLength: %d bytes", len)
fmt.Printf("\nFile Name: %s", file.Name())
}
func ReadFile() {
data, err := ioutil.ReadFile("test.txt")
if err != nil {
log.Panicf("failed reading data from file: %s", err)
}
fmt.Printf("\nFile Content: %s", data)
}
func main() {
fmt.Printf("\n######## Read file #########\n")
ReadFile()
fmt.Printf("\n\n######## WriteAt #########\n")
Beginning()
fmt.Printf("\n\n######## Read file #########\n")
ReadFile()
}
Output
######## Read file #########
File Content: Po Programming Language
######## WriteAt #########
Length: 1 bytes
File Name: test.txt
######## Read file #########
File Content: Go Programming Language
Most Helpful This Week
Golang Read Write Create and Delete text file
Replace any non-alphanumeric character sequences with a dash using Regex
How to reads and decodes JSON values from an input stream?
Passing multiple string arguments to a variadic function
How to declare and access pointer variable?
Example Function that takes an interface type as value and pointer?