Golang : Read file
This is the most basic way of how to read a file into buffer and display its content chunk by chunk. This example read plain text file, if you are reading a binary file... change fmt.Println(string(buffer[:n]))
to fmt.Println(buffer[:n])
(without the string).
For now, this is the most basic example of reading a file in Go
package main
import (
"fmt"
"io"
"os"
)
func main() {
file, err := os.Open("sometextfile.txt")
if err != nil {
fmt.Println(err)
return
}
defer file.Close()
// create a buffer to keep chunks that are read
buffer := make([]byte, 1024)
for {
// read a chunk
n, err := file.Read(buffer)
if err != nil && err != io.EOF { panic(err) }
if n == 0 { break }
// out the file content
fmt.Println(string(buffer[:n]))
}
}
See also : Golang : How to read CSV file
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+5.3k Gogland : Datasource explorer
+22.7k Golang : Test file read write permission example
+10.9k Golang : Roll the dice example
+26.4k Golang : Encrypt and decrypt data with AES crypto
+5.6k Unix/Linux : Get reboot history or check when was the last reboot date
+21k Golang : How to get time zone and load different time zone?
+11.2k Golang : Format numbers to nearest thousands such as kilos millions billions and trillions
+37.5k Golang : Comparing date or timestamp
+5.8k PHP : How to check if an array is empty ?
+6.3k Golang : Combine slices of complex numbers and operation example
+18.4k Golang : Set, Get and List environment variables
+6.1k Golang : Extract sub-strings