I am trying to find the path to the AppData\LocalLow .
I found an example that uses:
string folder = "c:\users\" + Environment.UserName + @"\appdata\LocalLow";
which for one is tied to c: and to users , which seems a little fragile.
I tried to use
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
but this gives me AppData\Local , and I need LocalLow due to the security restrictions that the application works with. It was also empty for my service user (at least when connected to a process).
Any other suggestions?
Mikael Svenson Dec 20 '10 at 21:49 2010-12-20 21:49
source share