vote up 0 vote down star

Ok it turns out this 3rd party component I am working with stores an email attachment in a property of string type (it is already decoded).

How would I store this to file now?

It has: filename, encodingtype and the string representation of the file.

flag

0% accept rate
Your question isn't very clear. What does "encodingtype" refer to? The MIME Content-Transfer-Encoding or a .NET System.Text.Encoding or something else? – Andreas Huber Jan 5 '09 at 0:05
How can be the "decoded" file stored in a string? Your app supports only textural (non-binary) files? – Gaspar Nagy Jan 6 '09 at 9:49

1 Answer

vote up 5 vote down

Open a file using a StreamWriter/TextWriter class and call the .Write method. Alternatively you can base64 encode it with Convert.ToBase64String first.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.