How to Create ChildAlbum(Image Library)

Posted by Community Admin on 03-Aug-2018 10:45

How to Create ChildAlbum(Image Library)

All Replies

Posted by Community Admin on 11-Jun-2014 00:00

Hi All,

I need to crate image libraries (through Coding) as following format

Album1   

    Album1.1   

   Album1.2

  I'm Creating Album1 using this link , 

How to Create Child Album(Album1.1,Album1.12) 

Thanks in Advance

Posted by Community Admin on 12-Jun-2014 00:00

Hello Ajay, 

You can create the child albums as described here:

http://www.sitefinity.com/documentation/documentationarticles/creating-folders

Just use the CreateFolder method of the LibrariesManager:

//creates a folder under the album
var folder = manager.CreateFolder(imagesAlbum);
folder.Title = "FolderTitle";
folder.Description = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.";
folder.UrlName = "FolderName";



Regards,
Elena Ganeva
Telerik
 
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Sitefinity CMS Ideas&Feedback Portal and vote to affect the priority of the items
 

This thread is closed