You could make it so every time your PC starts up it copies that file to that directory with a batch file. I'm a little rusty but I think something like this should do it.
Code:
@echo off
cd \
"[B]DRIVE LETTER OF FILE EG C:\"[/B]
cd "[B]DIRECTORY OF ORIGINAL FILE EG \FOLDER\OTHERFOLDER[/B]"
copy "[B]FILE HERE[/B]" "[B]DIRECTORY YOU WANT TO BE COPIED TO[/B]"
and just put that in to your startup folder. Don't use quotes in the actual file.Like I said I am a little rusty so if it doesn't work I am sorry.