mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
17 lines
212 B
Go
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
|
|
}
|