Index of /xtras/binfile_xtra
free cross-platform xtra for binary file read/write operations
documentation coming soon!
preliminary notes:
the xtra uses a convention similar to the C and PHP file stream I/O functions, so you can have a look
at the documentation available for those (just google for "fopen", "ftell", "fseek" etc.)
to work with binary files, it's important that the mode-parameter for fopen contains a "b" for binary,
so it should be e.g. "rb" (read), "wb" (write), "ab" (append) or "r+b" (read and write) (other possible
parameters would be "w+b" and "a+b", see documentation for fopen in C).