PBCC5 manual says: When PB/CC opens a file for APPEND, it does not adjust the file pointer to overwrite any existing CHR$(26) character (end of file mark, $EOF). Instead, it places new data at the "true" end of the file. PB/DOS overwrites the CHR$(26) marker.
So, when I read from a file I've appended to, and use NOT EOF to tell me if I've reached the end, it will stop before the appended material?
Workaround, anyone? Of course, the obvious workaround is to not use APPEND......
So, when I read from a file I've appended to, and use NOT EOF to tell me if I've reached the end, it will stop before the appended material?
Workaround, anyone? Of course, the obvious workaround is to not use APPEND......
Comment