sing-box/constant/path.go

42 lines
896 B
Go
Raw Permalink Normal View History

2022-07-02 14:55:10 +00:00
package constant
import (
"os"
"path/filepath"
"github.com/sagernet/sing/common/rw"
)
const dirName = "sing-box"
2023-04-21 09:29:00 +00:00
var resourcePaths []string
2022-07-06 06:44:51 +00:00
func FindPath(name string) (string, bool) {
2022-07-02 14:55:10 +00:00
name = os.ExpandEnv(name)
if rw.FileExists(name) {
return name, true
}
for _, dir := range resourcePaths {
if path := filepath.Join(dir, dirName, name); rw.FileExists(path) {
return path, true
}
if path := filepath.Join(dir, name); rw.FileExists(path) {
return path, true
}
2022-07-02 14:55:10 +00:00
}
return name, false
}
func init() {
resourcePaths = append(resourcePaths, ".")
if home := os.Getenv("HOME"); home != "" {
resourcePaths = append(resourcePaths, home)
}
2022-07-02 14:55:10 +00:00
if userConfigDir, err := os.UserConfigDir(); err == nil {
resourcePaths = append(resourcePaths, userConfigDir)
}
if userCacheDir, err := os.UserCacheDir(); err == nil {
resourcePaths = append(resourcePaths, userCacheDir)
}
}