deleteDirectory
public DeleteDirectoryResponse deleteDirectory(DeleteDirectoryRequest request) throws GPUdbException Deletes a directory 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.deleteDirectory
public DeleteDirectoryResponse deleteDirectory(String directoryName, Map<String, String> options) throws GPUdbException Deletes a directory from KiFS.Parameters:directoryName- Name of the directory in KiFS to be deleted. The directory must contain no files, unlessRECURSIVEisTRUE.options- Optional parameters.RECURSIVE: IfTRUE, will delete directory and all files residing in it. If false, directory must be empty for deletion. Supported values:The default value isFALSE.NO_ERROR_IF_NOT_EXISTS: IfTRUE, no error is returned if specified directory 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.