|
@@ -14,3 +14,12 @@ func Get() string {
|
|
|
}
|
|
|
return os.Getenv("HOME")
|
|
|
}
|
|
|
+
|
|
|
+// GetShortcutString returns the string that is shortcut to user's home directory
|
|
|
+// in the native shell of the platform running on.
|
|
|
+func GetShortcutString() string {
|
|
|
+ if runtime.GOOS == "windows" {
|
|
|
+ return "%USERPROFILE%" // be careful while using in format functions
|
|
|
+ }
|
|
|
+ return "~"
|
|
|
+}
|