Search code examples
objective-ccocoansworkspace

What is the application name of Microsoft Excel?


What is the application name of Microsoft Excel that I would use with -[NSWorkspace fullPathForApplication:] ?


Solution

  • It's @"Microsoft Excel" (at least with office 2008):

    This:

    NSString *path = [[NSWorkspace sharedWorkspace] fullPathForApplication:@"Microsoft Excel"];
    NSLog(@"path: %@", path);
    

    Outputs:

    2012-09-10 21:42:57.059 Craplet[2164:707] path: /Applications/Microsoft Office 2008/Microsoft Excel.app
    

    I tried "Excel" and "MS Excel" and confirmed they return null.