Does anyone know how to start a new finder window with a path to a specific file?
This is for a standalone app only.
Something like this
var finder : System.Diagnostics.Process = new System.Diagnostics.Process();
finder.Start("finder.app", myFileLocation);
only that doesn’t work…