生命不止,继续 go go go !!!
读写文件应该是在开发过程中经常遇到的,今天要跟大家一起分享的就是在golang的世界中,如何读写文件。
使用io/ioutil进行读写文件
先回忆下之前的ioutil包介绍:
Go语言学习之ioutil包(The way to go)
其中提到了两个方法:
func ReadFile
func ReadFile(filename string) ([]byte, error)
ReadFile reads the file named by filename and returns the contents. A successful call returns err == nil, not err == EOF. Because ReadFile reads the whole file, it does not t