package homedir

Import Path
	github.com/mitchellh/go-homedir (on go.dev)

Dependency Relation
	imports 9 packages, and imported by 2 packages

Involved Source Files homedir.go
Package-Level Functions (total 5, in which 3 are exported)
Dir returns the home directory for the executing user. This uses an OS-specific method for discovering the home directory. An error is returned if a home directory cannot be detected.
Expand expands the path to include the home directory if the path is prefixed with `~`. If it isn't prefixed with `~`, the path is returned as-is.
Reset clears the cache, forcing the next call to Dir to re-detect the home directory. This generally never has to be called, but can be useful in tests if you're modifying the home directory via the HOME env var or something.
Package-Level Variables (total 3, in which 1 are exported)
DisableCache will disable caching of the home directory. Caching is enabled by default.