Hi,
I think you should use batch file for that purpose and run it before the actual backup, e.g.:
copy C:\Something\anything.xyz C:\forallotherfiles\anything.xyz
and after the backup you can run another batch file to copy each files into your target directory, e.g.:
REM switching to drive M:
m:
REM entering into the mybackup folder
cd m:\mybackup
REM creating example123 subfolder
md example123
REM copy the file from mybackup folder to example123
copy m:\mybackup\anything.xyz copy m:\mybackup\example123\anything.xyz
Note that you can also use the move or xcopy (can copy/move and even synchonize some directories, et.c) commands, type in to Run...:
cmd /k xcopy /?
cmd /k move /?
.. and so on.
To create a batch file, just open Notepad (start menu accessories), then type in the commands and save the file with .BAT extension after you've set up All files at the drop-down list (or it'll create a simple text file).
Is this a good temporary solution for you?
Ark