Tagged Questions
22
votes
8answers
12k views
Determine file type in Ruby
How does one reliably determine a file's type? File extension analysis is not acceptable. There must be a rubyesque tool similar to the UNIX file(1) command?
This is regarding MIME or content type, ...
3
votes
1answer
654 views
Grails file upload - how to recognize file and/or content type?
I'm a Grails beginner, so please be patient with me. Currently I'm having hard times manipulating file uploads. As far as I understand using request.getFile() I can easily get the stream of bytes. But ...
0
votes
2answers
24 views
What's the easiest and quickest way to get the MIME/Media/Content type of a given URL?
So I'm going to transfer a file from a remote server to my server but before I transfer it I want to know what sort of file it is. If it's an HTML file I'll deal with it in a certain way, if it's a ...