Index of /xtras/binfile_xtra

[ICO]NameLast modifiedSizeDescription

[DIR]Parent Directory  -  
[DIR]mac/19-Feb-2010 18:48 -  
[TXT]readme.txt19-Feb-2010 18:48 608  
[DIR]win/09-Apr-2011 04:03 -  

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).