Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi,
Folders are like regular content. so...
var repository = ServiceLocator.Current.GetInstance();
var folder = repository.GetDefault(yourParentContentLink);
folder.Name = "Test";
var folderReference = repository.Save(folder, SaveAction.Publish, AccessLevel.NoAccess);
Hi,
Iam trying to create a sub folder from the code and i have the ContentReference of the parent folder.
I know how to add a media file to an existing folder(using blob factory),
but before i add the file i want to create a sub folder programically, get its contentLink and then add the file to it.
Somebody know how to do that?
Manually i can do it by doing a right click on a folder and choose New Folder.
Thank You!
Zvika Kozniak.