登录
go语言zip压缩
已收录文章:1篇
三天内
三天内
一周内
一月内
三月内
最新
最热
Golang
·
Go教程
| 2年前 |
go语言zip压缩
·
golang
go语言制作的zip压缩程序
可以压缩文件和目录。 package main import ( "archive/zip" "bytes" "fmt" "io/ioutil" "os" "path/filepath" ) func main() { if err := compress(`gopkg`, `gopkg.zip`); err != nil { fmt.Println(err) } } // 参数frm可以是文件
282
收藏