My app is a windows desktop exe, and windows service which runs under the System account. My windows service needs to integrate with a 3rd party app that the user will also install which stores some config info in an ini file within one of the windows special-folders at: C:\Users\[UserName]\AppData\Local\[3rd party app name]
How can my Windows Service retrieve the current user's path to that folder to read the ini file in it, when the windows service runs as System account?
Ideally, I would have used something like
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
which returns the correct \AppData\Local\ folder when run from an app running as the current user.
But because my windows service is running as SYSTEM (which cannot be changed) that method instead returns: C:\Windows\system32\config\systemprofile\AppData\Local
So how can my windows service get the currently logged in user's LocalApplicationData special folder?
The code below shows how to get a list of logged in users. Once you have a list of logged in users, then you can check the last updated time of the file (File.GetLastWriteTime) that you're interested in.
Add Reference: System.Management
Create a class (name: UserInfo.cs)
UserInfo.cs:
GetLoggedInUserInfo:
Usage:
Resources: