-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
user.go
43 lines (36 loc) · 1.09 KB
/
user.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
Copyright © 2014–2020 Thomas Michael Edwards. All rights reserved.
Use of this source code is governed by a Simplified BSD License which
can be found in the LICENSE file.
*/
package main
import (
"errors"
"os"
"os/user"
"runtime"
)
func userHomeDir() (string, error) {
// Prefer the user's `HOME` environment variable.
if homeDir := os.Getenv("HOME"); homeDir != "" {
return homeDir, nil
}
// Elsewise, use the user's `.HomeDir` info.
if curUser, err := user.Current(); err == nil && curUser.HomeDir != "" {
return curUser.HomeDir, nil
}
// Failovers for Windows, though they should be unnecessary in Go ≥v1.7.
if runtime.GOOS == "windows" {
// Prefer the user's `USERPROFILE` environment variable.
if homeDir := os.Getenv("USERPROFILE"); homeDir != "" {
return homeDir, nil
}
// Elsewise, use the user's `HOMEDRIVE` and `HOMEPATH` environment variables.
homeDrive := os.Getenv("HOMEDRIVE")
homePath := os.Getenv("HOMEPATH")
if homeDrive != "" && homePath != "" {
return homeDrive + homePath, nil
}
}
return "", errors.New("Cannot find user home directory.")
}