// Copy document type icons, if any, to the resource dir
try {
Iterator itor = bundleProperties.getDocumentTypes().iterator();
while (itor.hasNext()) {
DocumentType documentType = (DocumentType) itor.next();
File iconFile = documentType.getIconFile();
if (iconFile != null) {
File dest = new File(mResourcesDir, iconFile.getName());
if(mVerbose)
log("Copying document icon file to \"" + bundlePath(dest) + "\"");
mFileUtils.copyFile(iconFile, dest);