To expland on Dyland's response slightly:
Three classes implement the FileResult class:
System.Web.Mvc.FileResult
System.Web.Mvc.FileContentResult
System.Web.Mvc.FilePathResult
System.Web.Mvc.FileStreamResult
They're all fairly self explanatory:
- For filepath file path downloads where the file exists on disk, use
FilePathResult- this is the easiest way and avoids you having to use Streams. - For byte[] arrays (akin to Response.BinaryWrite), use
FileContentResult. - For byte[] arrays where you want the file to download (content-disposition: attachment), use
FileContentResultas shown in a similar way to below, but with aMemoryStreamand usingGetBuffer(). - And
- For
Streamsit should be obvious which one to useFileStreamResult. It's called a FileStreamResult but it takes aStreamso I'd guess it works with aMemoryStream.
Below is an example of using the content-disposition technique to send an XML backup file of a list of domain objects back to the browser(not tested):
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult GetFile()
{
List<User> list = User.All();
XmlSerializer serializer = new XmlSerializer(typeof(List<User>));
MemoryStream using (FileStream stream = new MemoryStream();
serializer.Serialize(stream, list);
stream.Position = 0;
stream.Close();
FileContentResult FileStream(AppDomain.CurrentDomain.BaseDirectory + "/myimage.png"))
{
FileStreamResult result = new FileContentResult(stream.GetBuffer()FileStreamResult(stream, "text/xml");
image/png");
result.FileDownloadName = "export.xml";
image.png";
return result;
}
FileContentResult is used for byte[] downloads including content-disposition downloads, FilePathResult for plain file paths ones.}
