Skip to content

Instantly share code, notes, and snippets.

@QuynhVir
Forked from thedevsaddam/ReadFile.go
Created January 17, 2019 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save QuynhVir/5521adadff7a23ad468fb70d96cd66c0 to your computer and use it in GitHub Desktop.
Save QuynhVir/5521adadff7a23ad468fb70d96cd66c0 to your computer and use it in GitHub Desktop.
Reading file, line by line in Go lang using scanner
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
fileHandle, _ := os.Open("file_name.txt")
defer fileHandle.Close()
fileScanner := bufio.NewScanner(fileHandle)
for fileScanner.Scan() {
fmt.Println(fileScanner.Text())
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment