Creates and returns a new IDocumentFolder
instance.
A new IDocumentFolder
instance.
After setting some of the fields on the newly created object, the method InsertNewFolder
needs to be called to persist the newly created document folder.
//Create the folder IDocumentFolder newFolder = documentManager.CreateNewFolder("my new folder", "this is a test folder"); //Could now set optional properties such as security on newFolder before store... //Get the top level folder of the project to insert the document into IDocumentFolder topLevelFolder = documentManager.GetTopLevelFolder(containingProject); //Insert the folder, inheriting the top level folder's security IDocumentFolder storedFolder = documentManager.InsertNewFolder(topLevelFolder, newFolder, true);
IDocumentManager Interface | Plumtree.Remote.PRC.Collaboration.Document Namespace