Golang : Read file with ioutil
This tutorial will show you how to read a file into buffer and display the content in Go. This example read plain text file, if you are reading a binary file... change fmt.Println(string(file))
to fmt.Println(file)
(without the string).
Reading binary file will be more tricky as you need to know the format before reading the file. It will be covered in another tutorial.
For now, this is the most basic example of reading a file in Go with io/ioutil
readfileioutil.go
package main
import (
"fmt"
"io/ioutil"
)
func main() {
file, err := ioutil.ReadFile("testfile.txt")
if err != nil {
fmt.Println(err)
return
}
// out the file content
fmt.Println(string(file))
}
See also : Golang : Read 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.8k Unix/Linux/MacOSx : Get local IP address
+6.6k Golang : Map within a map example
+19.2k Mac OSX : Homebrew and Golang
+7.5k Golang : How to detect if a sentence ends with a punctuation?
+15.2k Golang : Search folders for file recursively with wildcard support
+9k Golang : Accept any number of function arguments with three dots(...)
+10.8k Golang : Underscore string example
+9.6k Golang : Changing a RGBA image number of channels with OpenCV
+23.6k Golang : Get ASCII code from a key press(cross-platform) example
+8.3k Golang : How To Use Panic and Recover
+5.9k Unix/Linux : How to test user agents blocked successfully ?