go文件操作

1.go读取文件第一种做法【案例就是复制文件】

filePath:="./show.txt"
    copyFilepath:="./copy.txt"
    file,_:=os.Open(filePath)
    defer  file.Close()
    buf:=make([]byte,1024)
    for {
        _,err:=file.Read(buf)
        if err == io.EOF {
            break;
        }
        copyfile,_:= os.OpenFile(copyFilepath,os.O_APPEND|os.O_CREATE,666)//复制文件给另一个
        copyfile.Write(buf)
    }

2.go读取完人家第二种做法

    //读取文件第二种办法 bufio
    filePath:="./show.txt"
    file,_:=os.OpenFile(filePath,os.O_CREATE|os.O_APPEND,666)
    buf:=make([]byte,1024)
    newReader:=bufio.NewReader(file)
    n,_:=newReader.Read(buf)
    fmt.Println(string(buf[:n]))

3.go读取文件第三种做法

    //读取文件第三中办法
    filePath:="./show.txt"
    buf,err:=ioutil.ReadFile(filePath)
    if err != nil {
        fmt.Println("read file is error")
    }
    fmt.Println(string(buf))

 

上一篇:Ajax简单异步上传图片并回显


下一篇:go文件操作