I have a pc with 2 users : administrator one and a standard one. My C# program is running in the standard user but with admin right (using the other account credentials).
When I try to open an image with Process.Start(@"C:\Users\AdminUser\Documents\Image.png");
The windows photos app is coming up, with a message that the file was moved or renamed. I checked the file properties inside the photos app and it turns out that the path it's looking for is "C:\Users\StandardUser\Documents\Image.png"
and thus can't find the image.
Does someone know why it's looking for different path?