美文网首页
Golang Embed资源并释放resource

Golang Embed资源并释放resource

作者: 大地缸 | 来源:发表于2021-03-21 08:22 被阅读0次

title: "Golang Embed资源并释放resource"
date: 2021-03-07T15:42:58+08:00
draft: true
tags: ['go']
author: "dadigang"
author_cn: "大地缸"
personal: "http://www.real007.cn"


关于作者

http://www.real007.cn/about

package main

import (
    "embed"
    "fmt"
    "io"
    "os"
)

//go:embed dict.txt
var f embed.FS

func main() {
    fs, _ := os.Create("dictionary.txt")
    helloFile, _ := f.Open("dict.txt")
    io.Copy(fs, helloFile)
    fmt.Println()
}

相关文章

网友评论

      本文标题:Golang Embed资源并释放resource

      本文链接:https://www.haomeiwen.com/subject/znnscltx.html