I am interested in detecting the MIME-type for a file in the documents directory of my iPhone application. A search through the docs did not provide any answers.
feedback
|
|
It's a bit hacky, but it should work, don't know for sure because I'm just guessing at it There are two options:
Make sure to perform the request in a thread though, since it's synchronous.
| |||||||||||||||
feedback
|
|
On Mac OS X this would be handled through LaunchServices and UTIs. On the iPhone these are not available. Since the only way for data to get into your sandbox is for you to put it there, most apps have intrinsic knowledge about the data of any file they can read. If you have a need for such a feature you should file a feature request with Apple. | |||||
feedback
|
|
I was using the answer provided by slf in a cocoa app (not iPhone) and noticed that the URL request seems to be reading the entire file from disk in order to determine the mime type (not great for large files). For anyone wanting to do this on the desktop here is the snippet I used (based on Louis's suggestion):
If you called that on a PDF file it would spit out: application/pdf | ||||
|
feedback
|
|
I'm not sure what are the practices on iPhone, but if you're allowed to, I'd make use of UNIX philosophy here: use program Alternatively, you could trust the browser. Browsers send the MIME type they guessed somewhere in the HTTP headers. I know that I can easily grab the MIME type information in PHP. That of course depends if you're willing to trust the client. | |||||
feedback
|