CRM saves attachements in AnnotationBase base table.

How can I convert the text in the DocumentBody entity back to file and save it the file system.

I’m comfortable with plugins and workflow activities. But can't figure how to convert a string in the database to a file on the system.

link

feedback

2 Answers

up vote 2 down vote accepted
using(FileStream fs = new FileStream("fileName", FileMode.Create, 
                                            FileAccess.Write))
{
    StreamWriter writer = new StreamWriter(fs);
    writer.Write(yourString);
    fs.Flush();
}

[EDIT] If we're talking about BASE64 strings then try this:

using (FileStream fs = new FileStream("fileName", FileMode.Create,
                                            FileAccess.Write))
 {
     byte[] bytes = Convert.FromBase64String(yourString);
     fs.Write(bytes, 0, bytes.Length);
     fs.Flush();
 }
link
No, thats not going to work with a 64BIT string. – Chris Jones Nov 24 '09 at 16:49
are you talking about BASE64 encoding? If so you should have specified in the question. – AZ. Nov 25 '09 at 14:50
Hmmm, I give you the answer, but i did answer my own question. :) – Chris Jones Nov 30 '09 at 13:46
feedback

Grrr.

Look all day, then find the answer 5mins after posting the question.

     File.WriteAllBytes("c:\\word1.docx", System.Convert.FromBase64String(str));
link
feedback

Your Answer

 
or
required, but never shown

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