I'm trying to find some way in Cocoa to translate from file extensions to Uniform Type Identifiers. That is, I want to find some way of doing this:

".jpg" => "public.jpeg"
".html" => "public.html" 
".ttf"=> "public.truetype-font"

I've searched on the NSWorkspace docs but couldn't find anything. The closest I could get was:

- (NSImage *)iconForFileType:(NSString *)fileType

that returns the icon for a file extension, and

– (NSString *)preferredFilenameExtensionForType:(NSString *)typeName

that does exactly the opposite of what I'm trying to do. Do any of you know how to do this?

I really hope I don't have to check for a lot of extensions by hand.

Thanks in advance.

link|improve this question

40% accept rate
feedback

2 Answers

up vote 14 down vote accepted

I needed this about a week ago:

NSString * UTI = (NSString *)UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, 
                                                                   (CFStringRef)[myFilePath pathExtension], 
                                                                   NULL);

If I run this on the extensions @"php", @"jpg", @"html", and @"ttf", it prints:

public.php-script
public.jpeg
public.html
public.truetype-ttf-font
link|improve this answer
6  
Just don't forget that because the function name has Create in it, you're responsible for releaseing the object. – Alex Oct 1 '09 at 21:00
Thanks! It worked. I had some problems initially, but it was because I was not trimming whitespace and newline characters from the path strings. (I am reading them from a command line tool.) – Marco Aurélio Oct 2 '09 at 18:32
2  
I needed this just today. :-) It's even cleaner if you wrap it like so: NSString *uti = [NSMakeCollectable(UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExte‌​nsion, (CFStringRef)[myFilePath pathExtension], NULL)) autorelease]; – Quinn Taylor Feb 5 '11 at 1:49
1  
You should know, that in order to get this code snippet to work on iOS, you must #import <MobileCoreServices/MobileCoreServices.h> – Jason Apr 8 '11 at 1:36
feedback

You can use the Terminal and invoke mdls which gives you all kinds of information on a certain file type including UTIs.

mdls /myPath/to/myFile.ext

mdls will then show you the associated UTIs in kMDItemContentTypeTree (it's also possible to call mdls from within your Cocoa App btw).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.