public boolean copyTo(String baseDestLocation) {
boolean allCopied = true;
Iterator itFiles = getArchiveFiles().iterator();
while (itFiles.hasNext()) {
ArchiveFile archiveFile = (ArchiveFile)itFiles.next();
boolean copied = archiveFile.copyTo(baseDestLocation);
allCopied = allCopied && copied;
}
return allCopied;
}