User guide
7 RASExpress Script Language
CommPlete Communications Server 173
GETFILETIME getfiletime(string file_name, var string buffer) : integer;
Gets the time of the file specified by file_name if the file is present, and copies it to
buffer (in hh:mm:ss format). If the file is present 1 is returned, else 0 is returned.
Example
See getfiledate command.
HANGUP hangup;
Hangs up the modem.
Example
/* This script illustrates the hangup command. */
proc main;
display("Example for hangup command^J^M");
if connected then
display("Will hang up the modem, press any key...");
getkey;
hangup;
display("^J^M");
else
display("Connection not made, command ignored^J^M");
endif
endproc
INC inc(var integer integer_variable);
Increments integer_variable by 1.
Example
See dec command.
ISFILE isfile(string path_name) : integer;
Verifies that path_name is a directory. If path_name is a directory, 0 is returned; other-
wise 1 is returned.
Example
See fcreate command.










