views:

142

answers:

1

how to find the attachment filename which is getting deleted

both ItemAttachmentDeleted, ItemAttachmentDeleting events afterproperties and beforeproperties are empty

A: 

below code gives us first attachment Name

SPFile attachment = properties.ListItem.ParentList.RootFolder.
      SubFolders["Attachments"].SubFolders[properties.ListItemId.ToString()].
      Files[properties.ListItem.Attachments.Count - 1];    

string link =  attachment.Name ;
Snehal

related questions