1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
// Copyright 2013 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package utils
import (
"os"
"path/filepath"
)
// Home returns the os-specific home path as specified in the environment.
func Home() string {
return filepath.Join(os.Getenv("HOMEDRIVE"), os.Getenv("HOMEPATH"))
}
// SetHome sets the os-specific home path in the environment.
func SetHome(s string) error {
v := filepath.VolumeName(s)
if v != "" {
if err := os.Setenv("HOMEDRIVE", v); err != nil {
return err
}
}
return os.Setenv("HOMEPATH", s[len(v):])
}
|