mirror of
https://gitee.com/johng/gf
synced 2026-07-04 21:03:13 +08:00
12 lines
233 B
Go
12 lines
233 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/os/gfile"
|
|
"github.com/gogf/gf/util/gutil"
|
|
)
|
|
|
|
func main() {
|
|
gutil.Dump(gfile.ScanDir("/Users/john/Documents", "*.*"))
|
|
gutil.Dump(gfile.ScanDir("/home/john/temp/newproject", "*", true))
|
|
}
|