I'd like to add one more thing. If you are using filesystemobject commands you can test the path of the file before you try to do anything with it and avoid error trapping altogether
Code:
dim fs
dim sTestFile as string
set fs = createobject("scripting.filesystemobject")
stestfile = = GetPath() & "\Gallery_Pics\" & "CrNr963v1" & ".jpg"
if fs.fileexists(stestfile) then
' you may also use if fs.fileexists(stestfile) = True then
<do what you're going to do if the file exists>
else
<do what you're going to do if the file does not exists>
endif