cacheHomeDir

Get path to the default cache (home) directory. See: XDG_CACHE_HOME See: https://specifications.freedesktop.org/basedir-spec/latest/

@safe
cacheHomeDir
()

Examples

version (Posix) {
	import nxt.path : buildPath;
	assert(cacheHomeDir() == homeDir.buildPath(DirPath(`.cache`)));
}

See Also

tempDir.

Meta