So I have decrypted a file and am left with a byte array containing this (Uni-encoded):

Content-Type: text/plain;
    name="testfile.txt"
Content-Transfer-Encoding: binary
Content-Disposition: attachment;
    filename="testfile.txt"

My super secret message.

Where "My super secret message." is the contents of the file, which could be any time of file contents (Word, Excel, etc.). What would be the best way of parsing this information and writing the original file back to the drive?

Is it possible that this binary data is actually an email attatchment? How would I go about re-creating the email attachment then pull out the original file?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Perhaps this MIME parser will help:

http://www.codeproject.com/KB/cs/mime_project.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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