Skip to content

Instantly share code, notes, and snippets.

@miguelmota
Created June 30, 2018 23:37
Show Gist options
  • Save miguelmota/08bca5febf2ce460a289ef14c7e9af4f to your computer and use it in GitHub Desktop.
Save miguelmota/08bca5febf2ce460a289ef14c7e9af4f to your computer and use it in GitHub Desktop.
Golang file size
func fileSize(path string) int64 {
fi, err := os.Stat(path)
if err != nil {
log.Fatal(err)
}
return fi.Size()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment