I am using Visual Studios 2019 Community using the .Net Framework 4.7.2. Using OpenFiledialog my InitialDirectory is set to Environment.GetFolderPath(Environment.SpecialFolder.CommonPictures). According to Microsoft Docs Website "The file system directory that serves as a repository for image files common to all users. Added in the .NET Framework 4." However, when I run my application I am placed in my personal pictures folders. My understanding is that the folder common to all users should be the Public Pictures folder. Is this an issue with Windows 10 Professional or am I missing something.
Here is my code
using(OpenFileDialog GetPhoto = new OpenFileDialog())
{
GetPhoto.InitialDirectory =
Environment.GetFolderPath(Environment.SpecialFolder.CommonPictures);