Codebase list golang-github-kyoh86-xdg / c94d500b-87b1-4000-bfe7-41b671ffefb7/main cache_win.go
c94d500b-87b1-4000-bfe7-41b671ffefb7/main

Tree @c94d500b-87b1-4000-bfe7-41b671ffefb7/main (Download .tar.gz)

cache_win.go @c94d500b-87b1-4000-bfe7-41b671ffefb7/mainraw · history · blame

// +build windows

package xdg

import (
	"os"
	"path/filepath"
)

// CacheHome returns a XDG cache directory (XDG_CACHE_HOME).
func CacheHome() string {
	return alternate(os.Getenv(CacheHomeEnv), filepath.Join(os.Getenv("LOCALAPPDATA"), "cache"))
}