zoukankan      html  css  js  c++  java
  • Go语言文件操作

    写程序离不了文件操作,这里总结下go语言文件操作。

    一、建立与打开

    建立文件函数:

    func Create(name string) (file *File, err Error)

    func NewFile(fd int, name string) *File

    具体见官网:http://golang.org/pkg/os/#Create

     

    打开文件函数:

    func Open(name string) (file *File, err Error)

    func OpenFile(name string, flag int, perm uint32) (file *File, err Error)

    具体见官网:http://golang.org/pkg/os/#Open

     

    二、写文件

    写文件函数:

    func (file *File) Write(b []byte) (n int, err Error)

    func (file *File) WriteAt(b []byte, off int64) (n int, err Error)

    func (file *File) WriteString(s string) (ret int, err Error)

    具体见官网:http://golang.org/pkg/os/#File.Write 

    写文件示例代码:

    package main
    import (
            "os"
            "fmt"
    )
    func main() {
            userFile := "test.txt"
            fout,err := os.Create(userFile)
            defer fout.Close()
            if err != nil {
                    fmt.Println(userFile,err)
                    return
            }
            for i:= 0;i<10;i++ {
                    fout.WriteString("Just a test!\r\n")
                    fout.Write([]byte("Just a test!\r\n"))
            }
    }
    
    

    三、读文件

    读文件函数:

    func (file *File) Read(b []byte) (n int, err Error)

    func (file *File) ReadAt(b []byte, off int64) (n int, err Error)

    具体见官网:http://golang.org/pkg/os/#File.Read

    读文件示例代码:

    package main
    import (
            "os"
            "fmt"
    )
    func main() {
            userFile := "test.txt"
            fin,err := os.Open(userFile)
            defer fin.Close()
            if err != nil {
                    fmt.Println(userFile,err)
                    return
            }
            buf := make([]byte, 1024)
            for{
                    n, _ := fin.Read(buf)
                    if 0 == n { break }
                    os.Stdout.Write(buf[:n])
            }
    }
    
    

    四、删除文件

    函数:

    func Remove(name string) Error

    具体见官网:http://golang.org/pkg/os/#Remove

  • E-Mail : Mike_Zhang@live.com
  • 转载请注明出处,谢谢!
查看全文
  • 相关阅读:
    Mac下截图快捷键
    在Mac下显示所有文件
    Mac 下格式化U盘
    在Mac OS X系统下 用dd命令将iso镜像写入u盘
    微信公众号全局返回码说明和接口频率限制说明
    Mac Git 学习笔记
    vim编程配置方法
    解决“Xlib.h not found when building graphviz on Mac OS X 10.8”错误
    Java-Session服务器端会话技术
    Java-记住上一次访问时间案例
  • 原文地址:https://www.cnblogs.com/MikeZhang/p/fileOperationsGolang.html
  • Copyright © 2011-2022 走看看