Golang read-write file (i)

Source: Internet
Author: User
This is a created article in which the information may have evolved or changed.

How to use the OS ( overwrite files )

package mainimport (    "fmt"    "os"    "time")func main() {    f, err := os.OpenFile("/tmp/logs/test.log", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777) //linux 路径    /*f, err := os.OpenFile("D:/tmp/logs/test.log", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777)*/ //windows路径    if err != nil {        fmt.Printf("open err%s", err)        return    }    defer f.Close() //资源必须释放,函数刚要返回之前延迟执行    for i := 0; i < 100; i++ {        ret, err2 := f.WriteString("s")        if err2 != nil {            fmt.Printf("write err:\n%s", err2)            return        }        fmt.Println(ret)        time.Sleep(2 * time.Second) //延时2秒    }}
 defer:调用一个被 defer 的函数时在函数刚要返回之前延迟执行,当函数无论怎样返回,某资源必须释放时,可用这种与众不同、但有效的处理方式。传统的例子包括解锁互斥或关闭文件。

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.