deleteFiles
Deletes one or more files from KiFS.Parameters:request-Requestobject containing the parameters for the operation.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.deleteFiles
public DeleteFilesResponse deleteFiles(List<String> fileNames, Map<String, String> options) throws GPUdbException Deletes one or more files from KiFS.Parameters:fileNames- An array of names of files to be deleted. File paths may contain wildcard characters after the KiFS directory delimiter. Accepted wildcard characters are asterisk (*) to represent any string of zero or more characters, and question mark (?) to indicate a single character.options- Optional parameters.NO_ERROR_IF_NOT_EXISTS: IfTRUE, no error is returned if a specified file does not exist. Supported values:The default value isFALSE.
Map.Returns:Responseobject containing the results of the operation.Throws:GPUdbException- if an error occurs during the operation.