CRM 文件附件

发布于 2024-08-12 03:46:37 字数 137 浏览 3 评论 0原文

CRM 将附件保存在 AnnotationBase 基表中。

如何将 DocumentBody 实体中的文本转换回文件并将其保存到文件系统。

我对插件和工作流程活动感到满意。但无法弄清楚如何将数据库中的字符串转换为系统上的文件。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-08-19 03:46:37
using(FileStream fs = new FileStream("fileName", FileMode.Create, 
                                            FileAccess.Write))
{
    StreamWriter writer = new StreamWriter(fs);
    writer.Write(yourString);
    fs.Flush();
}

[编辑]
如果我们讨论的是 BASE64 字符串,请尝试以下操作:

using (FileStream fs = new FileStream("fileName", FileMode.Create,
                                            FileAccess.Write))
 {
     byte[] bytes = Convert.FromBase64String(yourString);
     fs.Write(bytes, 0, bytes.Length);
     fs.Flush();
 }
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();
 }
懒猫 2024-08-19 03:46:37

咕噜。

看一整天,然后在发布问题后 5 分钟找到答案。

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

Grrr.

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

     File.WriteAllBytes("c:\\word1.docx", System.Convert.FromBase64String(str));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文