catch (FilesContainerExistsException fcee) {
// Hooray!
}
// See that it's still there
assertTrue(client.containerExists(containerName));
boolean found = false;
List<FilesContainerInfo> containers = client.listContainersInfo();
for (FilesContainerInfo info : containers) {
if(containerName.equals(info.getName())) {