Skip to content

Instantly share code, notes, and snippets.

@johnsonz
Created May 20, 2016 08:26
Show Gist options
  • Save johnsonz/f45a56373219821e672f353773e0cd9c to your computer and use it in GitHub Desktop.
Save johnsonz/f45a56373219821e672f353773e0cd9c to your computer and use it in GitHub Desktop.
go使用ioutil读取文件
func ReadFile(path string) []byte {
fmt.Println("path=", path)
content, err := ioutil.ReadFile(path)
if err != nil {
glog.Errorf("read file err: %v", err)
}
return content
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment