Hi, I have folder name and IManWorkspace Object and i'm seraching for folder based on folder nameCode : folderSearchParam = dmsServerDetials.CreateFolderSearchParameters() folderSearchParam.Add(imFolderAttributeID.imFolderName, "Temp Folder") folderSearchResult = ImanworkArea.SearchFolders(databaseManString, folderSearchParam)Know i'm getting folderSearchResult count value is 512 and i found actually there is more than 10,000 folders with the same name. By default Worksite Session Property (MaxRowsForSearch) is 512 and if we increase this will affect the performance.So is there is any way to serach for folder in only one workspaceApproach 2 profileserachParam = dmsServerDetials.CreateProfileSearchParameters() profileserachParam.Add(imProfileAttributeID.imProfileContainerID, workspaceDetails.ObjectID) folderSearchParam = dmsServerDetials.CreateFolderSearchParameters() folderSearchParam.Add(imFolderAttributeID.imFolderName, "Temp Folder") folderSearchResult = ImanworkArea.SearchProfiledFolders(databaseManString, profileserachParam, folderSearchParam)This folderSearchResult.Count value is 0. But we were able to see Temp Folder inside the corresponding workspace but search is not able to find. Is there is any error in code or any other approach to search folder only in particular workspace.