This is a search engine friendly CGI program that outputs help documents.
The LufDoc (Live User Fed Documentation) comment system will be implemented soon.

PSP Help Doc Indexer System

(Version 1.4.1)


Declaration:

function file_exists(const fname: string): boolean;

Arguments:

fname File name

Description:

File_exists (fexists, FileExists, etc.) is one of the most frequently used i/o function. It detects whether file exists.

Returns:

TRUE if file exists, FALSE if not.

Usage:

if file_exists('filename.ext') then
	// Do something
else
	// Report about error

See also:

file_error.

PSP Help documents