mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
16 lines
279 B
Go
16 lines
279 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/encoding/gcompress"
|
|
)
|
|
|
|
func main() {
|
|
err := gcompress.UnZipFile(
|
|
`D:\Workspace\Go\GOPATH\src\github.com\gogf\gf\geg\encoding\gcompress\data.zip`,
|
|
`D:\Workspace\Go\GOPATH\src\github.com\gogf\gf\geg`,
|
|
)
|
|
fmt.Println(err)
|
|
}
|