gf/os/gfile/gfile_z_example_home_test.go
2021-11-05 14:30:50 +08:00

17 lines
212 B
Go

package gfile_test
import (
"fmt"
"github.com/gogf/gf/v2/os/gfile"
)
func ExampleHome() {
// user's home directory
homePath, _ := gfile.Home()
fmt.Println(homePath)
// May Output:
// C:\Users\hailaz
}