Removing attachments from a post
To remove an attachment from a post, you must perform the following:
- Get the post.
Get an instance of the specified post. For more information, see Querying posts.
- Remove the attachment.
To remove the attachment, you must call the RemoveAttachment extension method of the post instance and pass the ID of the item. For more information about how to get the available attachments, see Getting the attachments of a post. For more information about attachments, see the Posts topic.
NOTE: The documendId parameter represents the ID of the live version of the specified item.
NOTE: Removing the attachment will not delete the document item from the library. For more information about deleting document items, see Deleting documents.
Here is a code example:
public static void RemovePostAttachment(Guid postId, Guid documentId)
{
ForumsManager forumsManager = ForumsManager.GetManager();
ForumPost post = forumsManager.GetPost(postId);
post.RemoveAttachment(documentId);
}