Is it possible in C# to find the application data folder path for all other Windows users except the logged-in user? I have checked various options like SID value path in Registry, System.DirectoryServices but none of them seems to work as expected.
I also tried appending/replacing the username in the folder path using WMI code, but in some cases it fails as in those special cases the username is not the same as available in the folder path.
Please note that, there are no issues accessing current user application data folder. I need to find out the path for all the users (there is a difference between "all the users" and "all users") account currently available on that particular system (admin privilege).
Please suggest a solid way to retrieve this information. Thanks in advance for not marking it as duplicate, because the question is bit different than the other questions.