cheliequan
2023-05-22 34d631ef02bb405a239dbf3cb5f46b13f0d5e6bd
1
2
3
4
5
6
7
8
9
10
11
package util
 
import "os"
 
// homeDir 获取当前用户的家目录路径
func homeDir() string {
    if h := os.Getenv("HOME"); h != "" {
        return h
    }
    return os.Getenv("USERPROFILE") // Windows 环境下获取用户目录
}