1

我需要在 C# 中将“对象”写入文件,但到目前为止我的所有尝试都没有奏效。问题是我要编写的对象确实是类型object,因为它是从 Outlook 电子邮件Attachments中的对象集合返回的。MailItem

我已经设法将它插入 SQL Server 数据库,从中检索并成功创建正确的文件,但这不是唯一的方法。

我也尝试使用BinaryFormatter如下所示,但这总是通过在开始时添加一些不需要的字符来破坏我的文件头(剩余数据似乎没问题):

[...]
using ( FileStream fileStream = new FileStream( tempName, FileMode.Create ) )
{
    using ( BinaryWriter binaryWriter = new BinaryWriter( fileStream ) )
    {
        using ( MemoryStream memoryStream = new MemoryStream() )
        {
            object attachmentData =                                     
                attachment.PropertyAccessor.GetProperty( PR_ATTACH_DATA_BIN );
            BinaryFormatter binaryFormatter = 
                new BinaryFormatter();
            binaryFormatter.Serialize( memoryStream, attachmentData );
            memoryStream.Seek( 0, SeekOrigin.Begin );
            binaryWriter.Write( memoryStream.ToArray() );
        }
    }
}
[...]

有任何想法吗?我无法控制从 Outlook 获得的内容,因此通常的序列化方法似乎不是我需要的...

4

1 回答 1

5

我认为这就是你要找的:

如何:保存 Outlook 中的附件

if (newEmail.Attachments.Count > 0)
{
      for (int i = 1; i <= newEmail.Attachments.Count; i++)
      {
           newEmail.Attachments[i].SaveAsFile
                (@"C:\TestFileSave\" +
                newEmail.Attachments[i].FileName);
      }
}
于 2012-07-09T08:10:56.930 回答