mirror of
https://gitee.com/johng/gf
synced 2026-06-06 02:25:47 +08:00
16 lines
345 B
Go
16 lines
345 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/frame/g"
|
|
"github.com/gogf/gf/os/gres"
|
|
_ "github.com/gogf/gf/os/gres/testdata"
|
|
)
|
|
|
|
func main() {
|
|
gres.Dump()
|
|
g.Dump(gres.Scan("/root/image/logo", "*"))
|
|
//g.Dump(gres.Scan("/root/image/", "*", true))
|
|
//g.Dump(gres.Scan("/template", "*"))
|
|
//g.Dump(gres.Scan("/template/layout2", "*.html", true))
|
|
}
|