Hi everyone..
I am trying to write code that would search in either one place or the other for a file. I need to identify a file and some users have this file in one location (older installation of program) or another (newer installation of program) and am not sure how to do. Here is my current code: HELP

$sourcefilea = "c:\Lotus\Notes\Data\bookmark.nsf"
if not exist($sourcefilea )
$rc=messagebox(" Can not find file " + $sourcefilea, "bookmark.nsf",0)
endif

The file Bookmark.nsf can now either be in the directory indicated in code shown or it can be in the following directory

"C:\Program Files\Notes\Data\bookmark.nsf"
how can I check both before the if not exist statement...