GO语言"io/ioutil"包中"WriteFile"函数的用法及代码示例。
用法:
func WriteFile(filename string, data []byte, perm fs.FileMode) error
WriteFile 将数据写入以文件名命名的文件。如果文件不存在,WriteFile 使用权限 perm(在 umask 之前)创建它;否则 WriteFile 在写入之前将其截断,而不更改权限。
从 Go 1.16 开始,此函数仅调用 os WriteFile
例子:
package main
import (
"io/ioutil"
"log"
)
func main() {
message := []byte("Hello, Gophers!")
err := ioutil.WriteFile("hello", message, 0644)
if err != nil {
log.Fatal(err)
}
}
相关用法
- GO Writer.Init用法及代码示例
- GO Writer.WriteAll用法及代码示例
- GO Writer.RegisterCompressor用法及代码示例
- GO Writer用法及代码示例
- GO WriteString用法及代码示例
- GO Write用法及代码示例
- GO Writer.AvailableBuffer用法及代码示例
- GO WithDeadline用法及代码示例
- GO WordEncoder.Encode用法及代码示例
- GO WaitGroup用法及代码示例
- GO WordDecoder.Decode用法及代码示例
- GO WordDecoder.DecodeHeader用法及代码示例
- GO WithValue用法及代码示例
- GO WalkDir用法及代码示例
- GO WithTimeout用法及代码示例
- GO WithCancel用法及代码示例
- GO Walk用法及代码示例
- GO PutUvarint用法及代码示例
- GO Scanner.Scan用法及代码示例
- GO LeadingZeros32用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 WriteFile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。