2021-08-21 13:20:40 +08:00
|
|
|
//go:build windows
|
2015-10-09 16:48:05 +02:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
2021-05-05 07:51:58 +08:00
|
|
|
import "path/filepath"
|
2017-11-11 22:29:00 +01:00
|
|
|
|
2015-10-13 21:41:53 +02:00
|
|
|
func LineSeparator() string {
|
|
|
|
return "\r\n"
|
|
|
|
}
|
2017-11-11 22:29:00 +01:00
|
|
|
|
2021-05-05 13:29:36 +01:00
|
|
|
// GetAssetLocation search for `file` in the excutable dir
|
2020-08-17 18:56:01 +08:00
|
|
|
func GetAssetLocation(file string) string {
|
|
|
|
const name = "v2ray.location.asset"
|
|
|
|
assetPath := NewEnvFlag(name).GetValue(getExecutableDir)
|
2021-05-05 07:51:58 +08:00
|
|
|
return filepath.Join(assetPath, file)
|
2020-08-17 18:56:01 +08:00
|
|
|
}
|