Search code examples
objective-ccocoafinder

Find out the "Open With" menu items in Finder


How can I replicate the Finder's "Open With" menu for a given file type?


Solution

  • This should do the trick:

    - (NSArray *)applicationsForURL:(NSURL *)url {
        return [(NSArray *)LSCopyApplicationURLsForURL((CFURLRef)url,
                                                       kLSRolesAll) autorelease];
    }