In Xdg:
XDG_CACHE_HOME --> %HOME%/Local Settings/Cache
XDG_CONFIG_HOME --> %HOME%/Local Settings
XDG_DATA_HOME --> %APPDATA%
This does not seem very good as the HOME environment variable is not typically defined on Windows (it is under Cygwin, but that is an "accident").
Instead, suggest the following correspondence:
XDG_CACHE_HOME --> %TEMP%
XDG_CONFIG_HOME --> %LOCALAPPDATA%
XDG_DATA_HOME --> %LOCALAPPDATA%
This coincides eg with what is done in Racket https://docs.racket-lang.org/basedir/index.html
In
Xdg:XDG_CACHE_HOME-->%HOME%/Local Settings/CacheXDG_CONFIG_HOME-->%HOME%/Local SettingsXDG_DATA_HOME-->%APPDATA%This does not seem very good as the
HOMEenvironment variable is not typically defined on Windows (it is under Cygwin, but that is an "accident").Instead, suggest the following correspondence:
XDG_CACHE_HOME-->%TEMP%XDG_CONFIG_HOME-->%LOCALAPPDATA%XDG_DATA_HOME-->%LOCALAPPDATA%This coincides eg with what is done in Racket https://docs.racket-lang.org/basedir/index.html