14.Go语言干货-文件操作
1.打开与关闭文件1.文件操作使用os包。2.os.Open()函数打开文件,返回一个*File与一个err。3.使用close()方法能够关闭文件,为了防止忘记关闭文件,通常与defer一起使用。package mainimport ( "fmt" "os")func main() { file, err := os.Open("./main.go") defer file.Close() if err != nil { fmt.P