True if Source (a term valid for load_files/2) exists. Fails
without error if this is not the case. The predicate is intended
to be used with :- if, as in the example below. See also
source_exports/2.
:- if(exists_source(library(error))).
:- use_module_library(error).
:- endif.