Hi,
I am using CMIS api to create folder in alfresco i.e.
newFolderProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder");
newFolderProps.put(PropertyIds.NAME, folderNAme);
createdFolder = reqdFolder.createFolder(newFolderProps);
Here I have one problem that I have to create 100 folders , but this method will create one folder at a time so in this scenerio it will call 100 times same function,
Is there any way to create 100 or more than 100 folder in a single call of alfresco where I can give whole structure to create folder .
So it will increase the performance and send less call to alfresco server.
Please send me reply
Am using alfresco 4.2.c community edition.