mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
42 lines
896 B
Go
42 lines
896 B
Go
package constant
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/sagernet/sing/common/rw"
|
|
)
|
|
|
|
const dirName = "sing-box"
|
|
|
|
var resourcePaths []string
|
|
|
|
func FindPath(name string) (string, bool) {
|
|
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
|
|
}
|
|
}
|
|
return name, false
|
|
}
|
|
|
|
func init() {
|
|
resourcePaths = append(resourcePaths, ".")
|
|
if home := os.Getenv("HOME"); home != "" {
|
|
resourcePaths = append(resourcePaths, home)
|
|
}
|
|
if userConfigDir, err := os.UserConfigDir(); err == nil {
|
|
resourcePaths = append(resourcePaths, userConfigDir)
|
|
}
|
|
if userCacheDir, err := os.UserCacheDir(); err == nil {
|
|
resourcePaths = append(resourcePaths, userCacheDir)
|
|
}
|
|
}
|