In a Windows Forms application I get the following path using Application.LocalUserAppDataPath:
C:\Users\<user>\AppData\Local\<company>\<app>\<version>
In my .net core 3.1 WPF application, I use Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
However, this only returns:
C:\Users\<user>\AppData\Local
I am missing the trailing part of the path:
\<company>\<app>\<version>
How do I get the full path as in a Windows Forms app?
Thanks for any hints.
