I want to know if a file exist.
i want a function that tells me if a file exist

ex:
c:\toto.txt


declare
exis boolean;
begin
exis := file_exist('c:\toto.txt');
if exis = TRUE then
--yé!
end if;
end;


plaz help!