SharePoint 获取SPListItem附件地址

已知SPListItem item,获取item的地址:
for (int i = 0; i < item.Attachments.Count; i++)

{

  string attachmentURL = item.Attachments.UrlPrefix + item.Attachments[i];

}

原文地址:https://www.cnblogs.com/TroubleShooting/p/3958711.html