如果文件不存在就创建文件,如果存在就续写文件
package wrigeFile
import (
"fmt"
"github.com/golang/glog"
"os"
)
//注意OpenFile这个方法的第二个参数,一定要加上RDWR,可读可写的权限
func writeFile(s string) {
file1, err := os.OpenFile("test.txt", os.O_CREATE|os.O_APPEND|os.O_RDWR, 0660)
if err != nil {
panic(err)
}
defer file1.Close()
if err != nil {
fmt.Println(file1, err)
return
}
glog.Infoln(s)
file1.WriteString(s)
file1.Sync()
}
os包相关资料:
http://blog.csdn.net/chenbaoke/article/details/42494851
http://blog.chinaunix.net/uid-24774106-id-3993609.html
http://www.widuu.com/archives/01/921.html
有疑问加站长微信联系(非本文作者)