Removing attachments from a post

To remove an attachment from a post, you must perform the following:

  1. Get the post.
    Get an instance of the specified post. For more information, see Querying posts.
  2. 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);
}

Next steps

+1-888-365-2779
sales@sitefinity.com

Related topics:

Feedback

How useful is this article?

Tell us more

Submit
Your message was successfully sent.

We appreciate your feedback.

Your message could not be sent.

OK