Go语言学习: 文件操作/file/io/os

go语言里的文件操作
更新于: 2024-10-26 09:59:44

准备

命名为 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))
}