go文件操作

1.创建文件

    filePath:="./show.txt"
    _,err:=os.Create(filePath)
    if err!= nil {
        fmt.Println("create file is error")
    }
    _,err:=os.OpenFile(filePath,os.O_APPEND|os.O_CREATE,0666)
    if err != nil {
        fmt.Println("create file is error")
    }

2.写文件

上一篇:go文件操作


下一篇:Pathon删除指定文件夹下的文件夹和文件