Go语言学习: 文件操作/file/io/os
go语言里的文件操作
准备
命名为 hello.txt
hello world
main.go
读取文件为
byte/string
并输出读取绝对路径:
filename := path.Join(os.Getenv("HOME"), "Downloads", "hello.txt")
package main
import (
"fmt"
"os"
)
func check(e error) {
if e != nil {
panic(e)
}
}
func main() {
data, err := os.ReadFile("./app.js")
check(err)
fmt.Println(data)
fmt.Print(string(data))
}