Trying to open an image for editing in C#
I can open the file with
System.Diagnostics.Process.Start(fileItem.Path);
This seems to issue the default open command which in my case for jpg files is standard preview, is there any way to use Process to open the file with the associated “Edit” command.
You can use the
Verb-Property of theProcessStartInfoclassSee MSDN