I am trying to create a folder structure by copying a model folder structure. The code was working fine but suddenly stopped working. I am getting status value of 100602 instead of 0.
I have checked the input parameter values multiple time and they are correct. The copyOption value comes to 263936.
Here is the code.
int copyOption = LAPI_DOCUMENTS.COPY_CURRENTV | LAPI_DOCUMENTS.COPY_SET_CURRUSER | LAPI_DOCUMENTS.COPY_UNLOCKV | LAPI_DOCUMENTS.COPY_UNRESERVE;
LLValue newFolderInfo = new LLValue().setAssoc();
status = documents.CopyObject(srcvolumeID,templateObjID, dstVolumeID,dstParentID, copyOption,newFolderName,newFolderInfo);