Skip to content

Instantly share code, notes, and snippets.

@by-nari
Forked from thedevsaddam/ReadFile.go
Created January 17, 2019 16:06
Show Gist options
  • Save by-nari/5521adadff7a23ad468fb70d96cd66c0 to your computer and use it in GitHub Desktop.
Save by-nari/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