<< Click to Display Table of Contents >> Delete Market Files |
![]() ![]() ![]() |
This chapter describes the interface method for deleting the market file, the related input and output, and the precautions when calling. The interface to delete the market file is currently carried out mainly through the MRUtil class and does not support remote invocation (after the product is started, it is called on the product code), and is limited to the user who must have the admin role.
Method description:
Calling classes and methods |
import |
export |
describe |
---|---|---|---|
MRUtil.folders(GPrincipal user) |
user:the requested user is a user with admin role. |
String[] |
Static method to catch exceptions and get folder information for the market |
MRUtil.files(String folder, GPrincipal user) |
folder:folder relative path user:the requested user is a user with admin role. |
String[] |
The static method needs to catch the exception and get the file information of a folder in the market. |
MRUtil.removeGSFolder(String folder, GPrincipal user) |
folder:market folder relative path to delete user: to delete a user in a cluster folder , you must have the admin role |
Inner class in Result MRUtil, with two public attributes stateinfo state values can be MRUtil.SUCCEED_RESULT and MRUtil.FAILEDARSULT, and failure information in info when MRUtil.FAILED_RESULT |
Static method, need to catch exception, delete market folder |
MRUtil.removeGSFile(String file, GPrincipal user) |
file:market file relative path to delete user:users who delete market files must have the role of admin |
Result Just like above. |
Static methods that catch exceptions and delete files specified in the market |
Call Description :
Folders or files can be obtained by folders and files interface methods , and files that need to be deleted are removed by the remove interface method .