我下载带有 CSV 文件的 POP3 消息。我需要在附件中获取纯文本,我这样做:
For Each BP As MimeKit.MimeEntity In Msg.BodyParts
'Filtering:
If Not BP.IsAttachment = True Then Continue For
If Not BP.ContentDisposition.FileName.EndsWith(".csv") Then Continue For
Console.WriteLine((DirectCast(BP, MimeKit.TextPart).Text))
Next
这项工作如果
BP.ContentType.MediaType = "text"
BP.ContentType.MimeType = "csv"
但是,例如,如果MediaType = application
我无法投射BodyPart
到TextPart
并访问该.Text
属性。
我可以使用完整的附件文本,BP.ToString
但它会返回所有内容,包括。标题:
Content-Type: application/vnd.ms-excel;
name="MyFile.csv"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="MyFile.csv"
2018-03-10 10:12;0.797;m3/h;1.8;-0.3;1.8;m3;0.000;0.000;96;5346=0A=
2018-03-10 10:13;0.820;m3/h;1.8;-0.3;1.8;m3;0.000;0.000;96;5346=0A=
2018-03-10 10:14;0.868;m3/h;1.9;-0.3;1.9;m3;0.000;0.000;96;5346=0A=
2018-03-10 10:15;0.549;m3/h;1.9;-0.3;1.9;m3;0.000;0.000;96;5346=0A=
2018-03-10 10:16;0.281;m3/h;1.9;-0.3;1.9;m3;0.000;0.000;96;5346=0A=
1:无论中的值如何,如何获取正文部分的附件文本ContentType..
2:我在进行过滤之前下载了整个邮件/附件。如何仅下载要在过滤中使用的附件标头?