home *** CD-ROM | disk | FTP | other *** search
-
- #log File exists predicate
-
- (*
- * exists - return true if a file exists
- *
- *)
-
- function exists(name: anystring): boolean;
- var
- fd: file;
- begin
- assign(fd,name);
- {$i-} reset(fd); {$i+}
- if ioresult = 0 then
- begin
- close(fd);
- exists := true;
- end
- else
- exists := false;
- end;
-
-