2015-10-09 10:48:05 -04:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
2021-05-04 19:51:58 -04:00
|
|
|
import "path/filepath"
|
2017-11-11 16:29:00 -05:00
|
|
|
|
2015-10-13 15:41:53 -04:00
|
|
|
func ExpandEnv(s string) string {
|
2015-10-09 10:48:05 -04:00
|
|
|
// TODO
|
|
|
|
return s
|
|
|
|
}
|
2015-10-13 15:41:53 -04:00
|
|
|
|
|
|
|
func LineSeparator() string {
|
|
|
|
return "\r\n"
|
|
|
|
}
|
2017-11-11 16:29:00 -05:00
|
|
|
|
|
|
|
func GetToolLocation(file string) string {
|
|
|
|
const name = "v2ray.location.tool"
|
|
|
|
toolPath := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecutableDir)
|
|
|
|
return filepath.Join(toolPath, file+".exe")
|
|
|
|
}
|
2020-08-17 06:56:01 -04:00
|
|
|
|
|
|
|
// GetAssetLocation search for `file` in the excutable dir
|
|
|
|
func GetAssetLocation(file string) string {
|
|
|
|
const name = "v2ray.location.asset"
|
|
|
|
assetPath := NewEnvFlag(name).GetValue(getExecutableDir)
|
2021-05-04 19:51:58 -04:00
|
|
|
return filepath.Join(assetPath, file)
|
2020-08-17 06:56:01 -04:00
|
|
|
}
|