fileWriteInt

Writes a 32-bit integer to a file. Takes a file handle and a 32-bit signed integer value. Returns nothing (void).

File IO

Parameters & Returns

Parameters

fileHandle Int
value Int

Returns

Void

Quick Summary

Writes a 32-bit integer to a file. Takes a file handle and a 32-bit signed integer value. Returns nothing (void).

Technical Exegesis...

Writes a 32-bit signed integer to the file at the current position and advances the position by 4 bytes (sizeof(int)). Does nothing if the handle is invalid.

Writes the data in native binary format. Use this for writing binary file formats or structured data files.

Example

Example.bam
; No example implemented yet