I have:
targetFile = air.File.desktopDirectory.resolvePath('myFolder' + files[f].name);
files[f].moveTo(targetFile,true); // Overwrite
I would like to make a backup copy of targetFile before overwriting it.
Maybe something with datetime stamp so that I have infinite backups, which of course would get cleared out periodically (read: once every blue moon).
and then