package traverse

import 

// UserHomeDir returns the current user's home directory.
func ( Context) (string, error) {
	return os.UserHomeDir()
}

// UserCacheDir returns the default root directory to use for user-specific cached data.
func ( Context) (string, error) {
	return os.UserCacheDir()
}

// UserConfigDir returns the default root directory to use for user-specific configuration data.
func ( Context) (string, error) {
	return os.UserConfigDir()
}

// TempDir returns the default directory to use for temporary files.
func ( Context) (string, error) {
	return os.TempDir(), nil
}