xx = @SYSINFO.TIME -- Returns information about the current time, in
several formats:
@SYSINFO.TIME.RAW()
Returns the "raw"
time, as the number of seconds since "the epoch",
which is defined as "1970-01-01
00:00:00 UTC".
@SYSINFO.TIME.UTC()
@SYSINFO.TIME.LOCAL()
Returns the current time,
either from UTC, or the local timezone,
formatted as:
YYYY:MM:DD:HH:MM:SS:w:yyy:d
Where:
YYYY
- The year
MM -
The month, as a number from 01 to 12
DD -
The day of the month (01-31)
HH -
The hour of the day (00-23)
MM -
The minute of the hour (00-59)
SS -
The second of the minute (00-60)
w -
The day of the week (1-7)
yyy -
The day of the year (001-366)
d -
"1" if daylight savings time is in effect, else "0"
@SYSINFO.TIME()
Same as @SYSINFO.TIME.LOCAL()
xx = @SYSINFO.WIDTH
The width of the filePro "screen". Currently
always "80".
xx = @SYSINFO.HEIGHT
The height of the filePro "screen". Currently
always "24".
Other system info may be added in future updates.