<< Click to Display Table of Contents >> Bulk moving folder |
![]() ![]() ![]() |
❖Method description
Provide interface calls for batch mobile folders. The caller can pass a <(from)AssetRef,(to) AssetRef> generic Map data structure to move the folder specified by AssetRef at the key position in the map to The location specified by AssetRef for the corresponding value position.
The following need to pay attention:
•During the execution of the loop, the specified principle needs to have write permission for the current fromRef, the parent of theRef, and the parent of the toRef, otherwise the movement of this folder will have an error.
•During the execution of the loop, if the path depth of the folder after the current folder to be moved is greater than the maximum depth specified by the system, the movement process will have an error.
•If an error or exception occurs during the execution of the loop, this error message will be recorded in errorInfo and continue to execute the following folder's move action
❖method of calling
rep.moveFolders(Map<AssetRef, AssetRef> moveMap, GPrincipal user, Map<AssetRef, String> errorInfo)
❖parameter declaration
parameter name |
parameter type |
parameter declaration |
Must pass |
---|---|---|---|
moveMap |
Map<AssetRef,AssetRef> |
Map data interface with generic type <AssetRef,AssetRef>, which stores the folder location to be moved and the target location information |
yes |
user |
GPrincipal |
GPrincipal object for validation of permissions |
yes |
errorInfo |
Map<AssetRef, String> |
Exception information set, structure:ref->e.message |
yes |
❖Returned value
none
❖Exception declaration
none