Skip to end of banner
Go to start of banner

fileReadByte

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Description

Reads a byte from an open file.

Parameters

Return Type

Byte

Error Handling

Throws String

"read_error": followed by the error message if the read fails

Example

Example 1

use "file";
int fid = fileOpen("C:\myData.dat");
runnerLog(fileReadByte(fid));
close(fid);

Returns: 61

See also

  • No labels