Go檔案操作

來源:互聯網
上載者:User

標籤:ase   使用   for   lse   regular   bbr   others   reg   多個   

Go檔案操作

go對於檔案的操作提供了多個包進行支援,目前學習了這部分,故對該包的使用記錄一下。

package mainimport (    "fmt"    "os"    "io")func main(){    fi, err := os.Open("main.go")    if err != nil{        fmt.Println(err)        return    }    wi, err := os.Create("wo.go")    if err != nil{        fmt.Println(err)        return    }    data := make([]byte, 100)    for {        n, err := fi.Read(data)        if err != nil{            if err == io.EOF{                break//已經讀取完了            }else{                fmt.Println(err)            }        }        w, err := wi.Write(data[0:n])        if err != nil{            fmt.Println(err)//出錯了            return        }        if w != n{            fmt.Println("也是有錯誤的!")            return        }        fmt.Print(string(data[0:n]))    }}

擷取檔案的屬性

package mainimport (    "fmt"    "os")func main(){    fileInfo, err := os.Stat("main.go")    if err != nil{        fmt.Println(err)    }    fmt.Print(fileInfo)}

其中FileInfo的結構如下:

type FileInfo interface {    Name() string       // base name of the file 檔案名稱    Size() int64        // length in bytes for regular files; system-dependent for others    Mode() FileMode     // file mode bits    ModTime() time.Time // modification time    IsDir() bool        // abbreviation for Mode().IsDir()    Sys() interface{}   // underlying data source (can return nil)}

Go檔案操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.