well, if the path changes, the file won't be found... but that's how I was gonna suggest you check to see if the file is there or not.
Although sometimes it's easier to check to see if it's not there like;
if(!is_file($file))
{
die('Not Found');
}
Then you don't need an else statemnt, since you rscript will die if it's not found....