Rev 7747 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{guessMIMEType}\alias{guessMIMEType}\title{Infer the MIME type from a file name}\description{This function returns the MIME type, i.e. part of the valueused in the Content-Type for an HTTP request/responseor in email to identify the nature of the content.This is a string such as "text/plain" or "text/xml"or "image/png".The function consults an R object constructedby reading a Web site of known MIME types (not necessarily all)and matching the extension of the file name to the names of that table.}\usage{guessMIMEType(name, default = NA)}\arguments{\item{name}{character vector of file names}\item{default}{the value to use if no MIME type is found in the tablefor the given file name/extension.}}\value{A character vector giving the MIME types for each element of \code{name}.}\references{The table of MIME types and extensions was programmatically extractedfrom \samp{http://www.webmaster-toolkit.com/mime-types.shtml} with\code{tbls = readHTMLTable("http://www.webmaster-toolkit.com/mime-types.shtml")tmp = tbls[[1]][-1,]mimeTypeExtensions = structure(as.character(tmp[[2]]), names = gsub("^\\.", "", tmp[[1]]))save(mimeTypeExtensions, file = "data/mimeTypeExtensions.rda")}The IANA list is not as convenient to programmatically compile.%\url{http://www.ltsw.se/knbase/internet/mime.htp}}\author{Duncan Temple Lang}\seealso{Uploading file.}\examples{guessMIMEType(c("foo.txt", "foo.png", "foo.jpeg", "foo.Z", "foo.R"))guessMIMEType("foo.bob")guessMIMEType("foo.bob", "application/x-binary")}\keyword{IO}