As a follow-up to a thread in the bugs forum, in general, for cases when it is unknown whether the source file exists, is it good practice to copy a file like this (seized working in jAlbum 15)
try {
IO.copyFile(f, r);
}
catch(IOException e) {}
or better to perform a file existence check instead
if (f.exists()) {
IO.copyFile(f, r);
}