for (Iterator iter = fileKeysForUpload.iterator(); iter.hasNext();) {
File file = new File(objectKeyToFilepathMap.get(iter.next().toString()));
bytesToProcess += file.length();
}
BytesProgressWatcher progressWatcher = new BytesProgressWatcher(bytesToProcess) {
@Override
public void updateBytesTransferred(long byteCount) {
super.updateBytesTransferred(byteCount);
String detailsText = formatBytesProgressWatcherDetails(this, false);