I think you will need to do it through a macro. This bit of code checks for a file existing and you could add a msgbox to show a warning message.
set fso = CreateObject("Scripting.FileSystemObject")
on error resume next
set logFile = fso.GetFile(vExportLog)
if err <> 0 then ' file does not exist
on error goto 0
Regards,
Gordon