Sharepoint Attachment Удалить имя файла - PullRequest
1 голос
/ 25 марта 2010

как найти имя файла вложения, которое удаляется

оба свойства ItemAttachmentDeleted, ItemAttachmentDeleting afterproperties и beforeproperties пусты

Ответы [ 2 ]

1 голос
/ 07 января 2014

использование

 string beforeUrl = properties.BeforeUrl;
 string[] fileName = beforeUrl.Split('/');
 string deletedfile = fileName[fileName.Length - 1];
0 голосов
/ 27 апреля 2010

ниже кода дает нам первое вложение Имя

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

string link =  attachment.Name ;
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...