WRITES C BYTES TO THE BINARY FILE NUMBER N, DATA TO BE WRITTEN ARE IN THE STRING EXPRESSION S
ACTION
The command FILEBIN_HEXA_WRITE N,C,S writes a block of C bytes to the binary file number N, data to be written are in the string expression S.
The size the string expression S must be greater than or equal to 2xC.
The current position in the binary file is increased by C.
SYNTAX:
FILEBIN_HEXA_WRITE N,C,S
USE ERROR EXAMPLE
rem open a binary file for writing
filebin_open_write 1 1,"file.abc"
rem set the position to 5
filebin_position 1,5
rem write 10 bytes
filebin_hexa_write 1,10,"1A2B3C4D5E6F00112233"
rem close the binary file
filebin_close 1
FILEBIN_HEXA_WRITE
FILEBIN_HEXA_WRITE N,C,S
SEE ALSO
FILEBIN_BLOCK_READ
FILEBIN_BLOCK_WRITE
FILEBIN_CLOSE
FILEBIN_HEXA_READ
FILEBIN_HEXA_READ$()
FILEBIN_OPEN_READ
FILEBIN_OPEN_WRITE
FILEBIN_POS()
FILEBIN_POSITION
FILEBIN_READ
FILEBIN_READ()
FILEBIN_SIZE()
FILEBIN_WRITE