SysGetErrortext

>>-SysGetErrortext(errornumber)--------------------------------><

Obtains a string describing the system error identified by the error number.

Returns a string with the description of the error, or an empty string if no description is available.

Windows Example:

err=SysMkDir("c:\temp")
if err \= 0 then
say "Error" err":"SysGetErrortext(err)

Unix Example:

err=SysMkDir("/home/NotKnown/temp")
if err \= 0 then
say "Error" err":"SysGetErrortext(err)