Try our conversational search powered by Generative AI!

Delete blocks stored in ContentAssetFolder in CMS

Vote:
 

I have a code which creates blocks programmatically and those are stored in ContentAssetFolder for a page. The ContentAssetFolder is created programmatically like this:

                assetFolder = _contentRepository.GetDefault(rootAssetFolder);
                assetFolder.Name = content.Name;
                assetFolder.ContentOwnerID = content.ContentGuid;
                assetFolder.Attach(content);
                _contentRepository.Save(assetFolder, SaveAction.Publish, AccessLevel.NoAccess);

I noticed that ContentAssetFolder is not shown in the tree on Blocks panel when I open the respective page in CMS and I wonder if there is any way to move the blocks to waste basket in CMS. Or do I have to do it programmatically?

#178057
Edited, Apr 28, 2017 10:15
Vote:
 

The recommendation is to use EPiServer.Core.ContentAssetHelper (available in IOC container) to manage assetfolders (for example in your code above does not handle the case that folder might already exist).

In your case you could call the method GetOrCreateAssetFolder (which will give you the asset folder if it already exist otherwise it is created for you)

#178059
Apr 28, 2017 10:55
Vote:
 

I have fixed the code so that it uses ContentAssetHelper to create the ContentAssetFolder. My question was rather how to get rid of the existing blocks and ContentAssetFolders created by the old code. I noticed even that the moving the page to the waste basket and emptying it won't help - both ContentAssetFolder and the blocks are left intact...

#178060
Apr 28, 2017 10:57
Vote:
 

You need to update the "owning content" as well so it points to your new created asset folder. Something like:

 
var content = contentAssetHelper.GetAssetOwner(assetFolder.ContentLink).CreateWritableClone();
assetFolder.Attach(content);
_contentRepository.Save(content, SaveAction.Patch, AccessLevel.NoAccess);

Note however that the above code just updates the content to point to your created assetfolder, it will not take care of deleting the old one. 

#178061
Edited, Apr 28, 2017 11:08
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.