Skip to end of banner
Go to start of banner

fileRead

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 3 Current »

Description

Reads a byte array from a file until it reaches the specified length or until the EOF is reached.

Parameters

Return Type

Byte []

Error Handling

Throws String

Errors:
  • "eof": if you read past the end of the file
  • "read_error": followed by the actual error if read fails

Example

Example 1

use "file";
int fid = open("C:\myData.dat");
runnerLog(read(fid, 10));
close(fid);

Returns: 61|54|32|85|45|33|21|11|40|06 (a byte array)

See also

  • No labels