Skip to end of banner
Go to start of banner

fileWrite

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

Version 1 Next »

Description

Writes text or byte data to an open file.

Parameters

Return Type

None

Return value has no meaning.

Throws

string

A string starting with “write_error:“ followed by the actual error

Example

Example 1

use "file";

int fid = open(filename); //fileOpen
fileWrite(fid, "First line is here
"); //full name of the routine
write(fid, "Second line is here
");
close(fid); //fileClose

See also

Filter by label

There are no items with the selected labels at this time.

  • No labels