Comment lancer une application non située dans /Applications
Bonsoir,
Tout est dans le titre. La méthode launchApplication de NSWorkspace ne tient pas compte du path.
Quelqu'un a une idée ?
Par avance merci.
Tout est dans le titre. La méthode launchApplication de NSWorkspace ne tient pas compte du path.
Quelqu'un a une idée ?
Par avance merci.
Connectez-vous ou Inscrivez-vous pour répondre.
Réponses
[[NSWorkspace sharedWorkspace] launchApplication:@MyDocApp.app];
- (BOOL)launchApplication:(NSString *)appName
appName
The name of the application to open.
Return Value
YES if the application was successfully launched or was already running; otherwise, NO.
Discussion
The appName parameter need not be specified with a full path and, in the case of an application wrapper, may be specified with or without the .app extension, as described in “Use of .app Extensionâ€.
http://developer.apple.com/DOCUMENTATION/Carbon/Reference/LaunchServicesReference/Reference/reference.html
Merci également à shlum et Philippe49.