Search code examples
c#asp.netfilestreammemorystreamstringwriter

FileStream action writing empty file


I have an ASP.Net MVC 4 app that is downloading an empty file. What am I missing?

Controller:

public class HomeController : Controller
{
    public ActionResult Index()
    {
        return View();
    }

    public FileStreamResult ICS()
    {
        var memoryStream = new MemoryStream();
        StreamWriter sw = new StreamWriter(memoryStream);
        sw.WriteLine(@"BEGIN:VCALENDAR");
        sw.WriteLine(@"VERSION:2.0");
        sw.WriteLine(@"PRODID:-//www.marudot.com//iCal Event Maker");
        sw.WriteLine(@"BEGIN:VEVENT");
        sw.WriteLine(@"DTSTAMP:20141111T165545Z");
        sw.WriteLine(@"UID:20141111T165545Z-1194755835@marudot.com");
        sw.WriteLine(@"DTSTART;TZID=""America/Chicago"":20141114T080000");
        sw.WriteLine(@"DTEND;TZID=""America/Chicago"":20141114T120000");
        sw.WriteLine(@"SUMMARY:Bobby's Big Bash");
        sw.WriteLine(@"DESCRIPTION:test");
        sw.WriteLine(@"LOCATION:test");
        sw.WriteLine(@"END:VEVENT");
        sw.WriteLine(@"END:VCALENDAR");

        sw.Flush();
        return new FileStreamResult(memoryStream, "text/calendar") { FileDownloadName = "test.ics" };
    }

}

View:

<h2>Index</h2>
@Html.ActionLink("ical event", "ICS");

Clicking the link downloads an empty ICS file.


Solution

  • Set Position property to 0 for the MemoryStream object after flush.