📌  相关文章
📜  go read file to string - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:55.836000             🧑  作者: Mango

代码示例1
// go read file to string
b, err := ioutil.ReadFile("file.txt") // just pass the file name
    if err != nil {
        fmt.Print(err)
    }
str := string(b) // convert content to a 'string'