I need to get the path of each windows user AppData folder. I tried to use
string path = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
and it gives the path of the current user only.
I need to iterate all windows users and get the AppData path.
I looked for a solution in the web and tried this and this but did not succeed.
I thought to go over all windows users as described here and somehow using the result of the current user AppData path combine to all users path, but I am not quit sure how to implement it.