I am trying to create a folder if it does not exist and then copy a message from another folder to the destination folder. I am finding some strange behaviour that I can not understand. Given the following excerpt:
// messages is an array of Message instances.
// Source is the source folder
// destination is a string of the destination folder.
Folder dest = null;
try {
dest = store.getFolder(destination);
if (!dest.exists()) {
dest.create(Folder.HOLDS_MESSAGES | Folder.HOLDS_FOLDERS);
// Since folder's are not meant to cache I thought I'd get it again
// though this does not work either.
//dest.close(false);
//dest = store.getFolder(destination);
}
dest.open(Folder.READ_WRITE);
// Fails here
source.copyMessages(messages, dest);
source.setFlags(messages, new Flags(Flags.Flag.DELETED), true);
} catch (MessagingException ex) {
throw new MailProcessorException(ex.getMessage(), ex);
} finally {
if (dest != null) {
try {
dest.close(false);
} catch (MessagingException ex) {
System.err.println("Couldn't close destination folder.");
}
}
}
The following behaviour is examined:
- If the folder does not exist:
- The folder gets created
- An exception is thrown at
source.copyMessages.
- If the folder does exist:
- The messages are copied as expected.
- Messages are marked for deletion.
I am using JavaMail 1.4.6, also tried with 1.6.5.

if (!dest.exists())towhile (!dest.exists())and addThread.sleep(1000)after creating the folder – goravine Feb 11 at 2:40create()to outputdest.exists()which would always printtrue. – Brett Ryan Feb 11 at 3:04