Click here to Skip to main content
15,879,474 members
Articles / Programming Languages / C#
Tip/Trick

Back to Basics – Reading a File into Memory Stream

Rate me:
Please Sign up or sign in to vote.
4.75/5 (11 votes)
3 Mar 2011CPOL1 min read 131.8K   4   8
How to read a file into Memory Stream

Back to Basics – Reading a File into Memory Stream

Today, I was asked to help a developer with a simple task she had. That task included reading an image file into a memory stream in order to send the image through an e-mail attachment. This post will show you how to do exactly that.

Reading a File into Memory Stream

Here is the code for reading the file into a memory stream:

JavaScript
using (FileStream fileStream = File.OpenRead(filePath))
{
    MemoryStream memStream = new MemoryStream();
    memStream.SetLength(fileStream.Length);
    fileStream.Read(memStream.GetBuffer(), 0, (int)fileStream.Length);
}

That’s it for the reading part. Pay attention to use the using statement in order to dispose the FileStream after you use it.

Adding a MemoryStream as Attachment to a MailMessage

In order to use a stream as an attachment for an e-mail message object, all you have to do is to write the following code:

JavaScript
msg.Attachments.Add(new Attachment(memStream, filename, MediaTypeNames.Image.Jpeg));

In the code sample, msg is an instance of a MailMessage class, memStream is the MemoryStream (such as the memory stream from the previous code sample) and filename is the name of the file in the attachment. Since I know that the image is jpeg, then I use the MediaTypeNames.Image.Jpeg.

Summary

Reading a file into a stream is a very basic thing to know. In the post, I showed how to read an image into a memory stream and also how to attach it into a mail message object.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead sparXys
Israel Israel
Gil Fink is a web development expert and ASP.Net/IIS Microsoft MVP. He is the founder and owner of sparXys. He is currently consulting for various enterprises and companies, where he helps to develop Web and RIA-based solutions. He conducts lectures and workshops for individuals and enterprises who want to specialize in infrastructure and web development. He is also co-author of several Microsoft Official Courses (MOCs) and training kits, co-author of "Pro Single Page Application Development" book (Apress) and the founder of Front-End.IL Meetup. You can read his publications at his website: http://www.gilfink.net

Comments and Discussions

 
GeneralMy vote of 1 Pin
wtwhite7-Mar-11 16:27
wtwhite7-Mar-11 16:27 
GeneralRe: My vote of 1 Pin
Gil Fink12-Mar-11 4:08
Gil Fink12-Mar-11 4:08 
GeneralRe: My vote of 1 Pin
wtwhite12-Mar-11 23:56
wtwhite12-Mar-11 23:56 
GeneralRe: My vote of 1 Pin
Gil Fink17-Mar-11 3:25
Gil Fink17-Mar-11 3:25 
GeneralRe: My vote of 1 Pin
wtwhite18-Mar-11 4:14
wtwhite18-Mar-11 4:14 
General[Nevermind] Pin
AspDotNetDev3-Mar-11 10:51
protectorAspDotNetDev3-Mar-11 10:51 
GeneralRe: This is a Tip/Trick Pin
Gil Fink4-Mar-11 0:00
Gil Fink4-Mar-11 0:00 
GeneralRe: This is a Tip/Trick Pin
AspDotNetDev4-Mar-11 11:57
protectorAspDotNetDev4-Mar-11 11:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.