home *** CD-ROM | disk | FTP | other *** search
/ Power Programming / powerprogramming1994.iso / progtool / pibterm / pibt41s1.arc / CHECKIFF.MOD < prev    next >
Text File  |  1987-12-02  |  571b  |  19 lines

  1. (*----------------------------------------------------------------------*)
  2. (*              Check_If_File_Exists --- Check if file exists           *)
  3. (*----------------------------------------------------------------------*)
  4.  
  5. FUNCTION Check_If_File_Exists( File_Name : AnyStr; File_Path : AnyStr ): BOOLEAN;
  6.  
  7. VAR
  8.    File_Entry: SearchRec;
  9.  
  10. BEGIN (* Check_If_File_Exists *)
  11.  
  12.    Add_Path( File_Name, File_Path, File_Name );
  13.  
  14.    FindFirst( File_Name, AnyFile, File_Entry );
  15.  
  16.    Check_If_File_Exists := ( DosError = 0 );
  17.  
  18. END   (* Check_If_File_Exists *);
  19.