Tools.h++ Class Reference

Table Of Contents
Write(const double* i, size_t count);
Writes count instances of the indicated built-in type from a block pointed to by i. Returns
TRUE if the write is successful.
RWBoolean
Write(const char* string);
Writes a character string, including the terminating null character, from a block pointed
to by string. Returns TRUE if the write is successful. Beware of non-terminated strings
when using this function.
Static Public Member Functions
static RWBoolean
Exists(const char* filename, int mode = F_OK);
Returns TRUE if a file with name filename exists and may be accessed according to the
mode specified. The mode may be ORed together from one or more of:
F_OK: "Exists" (Implied by any of the others)
X_OK: "Executable or searchable"
W_OK: "Writable"
R_OK: "Readable"
If your compiler or operating system does not support the POSIX access() function, then
mode X_OK will always return FALSE.