This method is used for removing files from the repository.
This method returns a structure as follows:
'flError' boolean 0 success, 1 fault 'message' string fault message (can be used to handle error cases) 'errorList' array of string contains a list of errors corresponding to files which cannot be removed. Successfully deleted files have an empty string.
Simple example of removing a file.
SQL> SOAP_CLIENT (url=>'http://localhost:6666/xmlStorageSystem', operation=>'deleteMultipleFiles', parameters=>vector ('email','user@example.domain', 'password', md5('xxx'), 'relativepathList', vector ('test.txt')); - SOAP Response <deleteMultipleFilesResponse> <Result> <flError>0</flError> <message /> <errorList> <item /> </errorList> </Result> </deleteMultipleFilesResponse>