Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted by ConfluenceCloudBulkEditor.py

...

Scroll tablelayout
sortDirectionASC
repeatTableHeadersdefault
style
widths13%, 11%, 13%, 63%
stylesortByColumn1
sortEnabledfalse
cellHighlightingtrue

...

Return value

integer

Examples

...

languagetext
int $fileID;

...


string $fileName = "c:/test.txt";

...


// Open the file and get the file ID, so we can write to the file

...


// later

...


$fileID = `fileOpen $fileName "w"`;

...


// Write a string to the file, passing in the file ID

...


// as the first argument. Almost all File I/O commands

...


// take a file ID as the first argument.

...


writeString $fileID "This is some text";

...


// Be sure to close the file after you are done

...


fileClose $fileID;

Additional information

Related commands

...