<< Click to Display Table of Contents >> Batch add folder |
![]() ![]() ![]() |
❖Method description
The interface call of batch new folder is provided, and the caller passes in a < AssetRef > generic List data structure, which can create a new folder at the location corresponding to ref of each element in this list.
The following needs to be noted :
•During loop execution, if the specified principle does not have write permission to the parent parent of the current ref, an error will occur in the creation of this folder
•During loop execution, if the folder corresponding to the current ref already exists in the system, and if the execute principle already has write permission to the folder, an error will occur in the new procedure
•During loop execution, an error occurs if the path depth of the current ref is greater than the maximum depth allowed by the system
•During loop execution, an error occurs if the parent parent of the current ref still does not exist
•If an error or exception occurs during the loop, if the caller passes in the errorInfo parameter, the error message is logged in the errorInfo and continues to perform the new action of the subsequent folder, otherwise the execution process will be interrupted. And throw an exception at the dead end
❖method of calling
rep.addFolders(List<AssetRef> refs, GPrincipal user, Map<AssetRef, String> errorInfo)
❖parameter declaration
parameter name |
parameter type |
parameter declaration |
Must pass |
---|---|---|---|
refs |
List<AssetRef> |
A list data interface of type < AssetRef > that stores the destination location information for the folder that needs to be added |
yes |
user |
GPrincipal |
GPrincipal object for validation of permissions |
yes |
errorInfo |
Map<AssetRef, String> |
Exception information set, structure::ref->e.message |
no |
❖returned value
none
❖exception declaration
If an error or exception occurs during execution and the caller does not pass in the errorInfo parameter, the execution process is interrupted and an exception is thrown at the defunct.