LaunchServices is opening all programs with the same name, even if a specific path is specified.
- by Andrew
I have two applications:
/Applications/VLC.app
/Applications/SomeDirectory/VLC.app
When I run:
[[NSWorkspace sharedWorkspace] openFile:nil withApplication:@"/Applications/VLC.app"];
It opens both of them.
I do not want it to do this, obviously, since I specified a specific path.
What is going on here?