mirror of
https://gitee.com/johng/gf
synced 2026-06-06 16:21:40 +08:00
17 lines
289 B
Go
17 lines
289 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/encoding/gcompress"
|
|
)
|
|
|
|
func main() {
|
|
err := gcompress.ZipPath(
|
|
`D:\Workspace\Go\GOPATH\src\github.com\gogf\gf\geg`,
|
|
`D:\Workspace\Go\GOPATH\src\github.com\gogf\gf\geg\encoding\gcompress\data.zip`,
|
|
"my-dir",
|
|
)
|
|
fmt.Println(err)
|
|
}
|