Unless the Destinationfile is being used, you can Kill it right before you copying.
If you want a wait, do it like this:

Code:
If Dir(Destinationfile) <> "" then
   Kill Destinationfile 
   Do 
      DoEvents
   Loop Until Dir(Destinationfile) = ""
End If