Exists MiscTTT Purpose To determine if a file exists Returns Boolean; Declaration Exists(Fl:string):boolean; Fl is the name of the file, including drive and path if necessary. Uses CRT, DOS, MiscTTT. Example USES CRT, DOS, MISCTTT; BEGIN IF NOT EXIST('C:\CONFIG.SYS') THEN BEEP; END.