mirror of
https://gitee.com/johng/gf.git
synced 2024-12-04 13:18:01 +08:00
11 lines
245 B
Go
11 lines
245 B
Go
package main
|
|
|
|
import (
|
|
"gitee.com/johng/gf/g/util/gutil"
|
|
"gitee.com/johng/gf/g/os/gfile"
|
|
)
|
|
|
|
func main() {
|
|
gutil.Dump(gfile.ScanDir("/home/john/Documents", "*"))
|
|
gutil.Dump(gfile.ScanDir("/home/john/temp/newproject", "*", true))
|
|
} |