WRITES ONE BYTE E TO THE BINARY FILE NUMBER N
ACTION
The command FILEBIN_WRITE N,E writes one byte to the binary file number N, the byte being in the variable E, or the result of the arithmetic expression E.
The current position in the binary file is incremented by 1.
Example :
filebin_write 1,Ab3%(6) (variable belonging to an integer array)
filebin_write 1,A+3 (arithmetic expression)
SYNTAX:
FILEBIN_WRITE N,E
USE ERROR EXAMPLE
rem open a binary file for writing
filebin_open_write 1,"test"
rem write the value 40
filebin_write 1,40
rem close the file
filebin_close 1
FILEBIN_WRITE
FILEBIN_WRITE N,E
SEE ALSO
FILEBIN_BLOCK_READ
FILEBIN_BLOCK_WRITE
FILEBIN_CLOSE
FILEBIN_HEXA_READ
FILEBIN_HEXA_READ$()
FILEBIN_HEXA_WRITE
FILEBIN_OPEN_READ
FILEBIN_OPEN_WRITE
FILEBIN_POS()
FILEBIN_POSITION
FILEBIN_READ
FILEBIN_READ()
FILEBIN_SIZE()