I am using on WPF Win32 file browser dialog to select a file in the filesystem. Now my problem is, when I select an shortcut file ending with .ink, it shows the application path not the shortcut(.ink) path.
For example I want to select snoop shortcut
as filepath, I've got.
How can I get the path from shortcut not from application?
Update I am trying restrict with
Win32.OpenFileDialog ofd = new Win32.OpenFileDialog();
ofd.Filter = "Link (*.lnk)|*.lnk";
but only .lnk it is possible to select. It should be possible to select other files too, not only .lnk file.