美文网首页
Go文件操作

Go文件操作

作者: 一个简单搬运工 | 来源:发表于2018-07-17 09:26 被阅读37次

http://www.cnblogs.com/sevenyuan/archive/2013/02/28/2937275.html

一、建立与打开

建立文件函数:

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

func NewFile(fd int, name string) *File</pre>

具体见官网:http://golang.org/pkg/os/#Create
打开文件函数:

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

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

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

## 二、写文件

写文件函数:

<pre>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)</pre>

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

写文件示例代码:


<pre> 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"))
        }
}</pre>

三、读文件

读文件函数:

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

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

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

读文件示例代码:

<pre>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)
                if0 == n { break }
                os.Stdout.Write(buf[:n])
        }
}</pre>

四、删除文件

函数:

<pre>func Remove(name string) Error</pre>

使用os库os.Open os.Create。

<pre>package main

import ( "io"
    "os" )

func main() {
    fi, err := os.Open("input.txt") if err != nil { panic(err) }
    defer fi.Close()

    fo, err := os.Create("output.txt") if err != nil { panic(err) }
    defer fo.Close()

    buf := make([]byte, 1024) for {
        n, err := fi.Read(buf) if err != nil && err != io.EOF { panic(err) } if n == 0 { break } if n2, err := fo.Write(buf[:n]); err != nil {
            panic(err)
        } else if n2 != n {
            panic("error in writing")
        }
    }
}</pre>

使用bufio库

<pre>package main

import ( "bufio"
    "io"
    "os" )

func main() {
    fi, err := os.Open("input.txt") if err != nil { panic(err) }
    defer fi.Close()
    r := bufio.NewReader(fi)

    fo, err := os.Create("output.txt") if err != nil { panic(err) }
    defer fo.Close()
    w := bufio.NewWriter(fo)

    buf := make([]byte, 1024) for {
        n, err := r.Read(buf) if err != nil && err != io.EOF { panic(err) } if n == 0 { break } if n2, err := w.Write(buf[:n]); err != nil {
            panic(err)
        } else if n2 != n {
            panic("error in writing")
        }
    } if err = w.Flush(); err != nil { panic(err) }
}</pre>

使用ioutil库

<pre>package main

import ( "io/ioutil" )

func main() {
    b, err := ioutil.ReadFile("input.txt") if err != nil { panic(err) }

    err = ioutil.WriteFile("output.txt", b, 0644) if err != nil { panic(err) }
}</pre>

五、遍历文件夹

<pre>package main
import ( "path/filepath"
    "os"
    "fmt"
    "flag" )

func getFilelist(path string) {
        err := filepath.Walk(path, func(path string, f os.FileInfo, err error) error { if ( f == nil ) {return err} if f.IsDir() {return nil}
                println(path) return nil
        }) if err != nil {
                fmt.Printf("filepath.Walk() returned %v\n", err)
        }
}

func main(){
        flag.Parse()
        root := flag.Arg(0)
        getFilelist(root)
}</pre>

相关文章

  • vscode使用指南(文件快速导航)

    编写文件操作 快速打开文件目录列表 go to Definition go to type definition ...

  • Golang 系统调用 syscall

    对于写后端语言来说的人,文件操作是很常见的。go对文件操作的支持非常的好。今天通过go中文件操作记录下syscal...

  • Go文件操作

    http://www.cnblogs.com/sevenyuan/archive/2013/02/28/29372...

  • go 文件操作

    File 建立File内存地址 打开文件 写文件 读文件 删除文件 判断文件是否存在 file写文件 file读文...

  • 49.超赞的 Go 语言 INI 文件操作

    超赞的 Go 语言 INI 文件操作

  • 《Go语言四十二章经》第三十一章 文件操作与IO

    《Go语言四十二章经》第三十一章 文件操作与IO 作者:李骁 31.1 文件系统 对于文件和目录的操作,Go主要在...

  • Golang 文件操作

    参考Golang文件操作整理golang中的文件读写 一、API 参考Go语言学习笔记(五)文件操作 1.os.F...

  • Go语言文件操作

    文件的打开和关闭 os包中提供了方法叫做Open,就是专门用于打开某一个文件的 注意点:如果文件不存在不会自动创建...

  • Go语言文件操作

    如何打开和关闭文件 在Go语言中的OS包提供了一个函数,叫做open,就是专门用来打开文件的 在Go语言中OS包中...

  • Go基础——文件操作

    目录操作 创建名称为name的目录,权限设置是perm,例如0777 根据path创建多级子目录,例如astaxi...

网友评论

      本文标题:Go文件操作

      本文链接:https://www.haomeiwen.com/subject/gmqwpftx.html