Skip to content

Instantly share code, notes, and snippets.

@cchamplin
Created March 22, 2016 19:50
Show Gist options
  • Save cchamplin/2929e58df5992abdd549 to your computer and use it in GitHub Desktop.
Save cchamplin/2929e58df5992abdd549 to your computer and use it in GitHub Desktop.
f, err := os.Open(path)
defer f.Close()
if err != nil {
log.Error.Printf("Failed to open file %s", path)
return "", err
}
byteData := make([]byte, 12)
bytesRead, err := f.Read(byteData)
if err != nil {
// EOF here (seemingly randomly)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment