Bug with #MODE_READWRITE
Posted: Wed Jan 11, 2017 4:23 am
Unless I'm misunderstanding something, there's a bug here (at least it's not working as I would expect):
The same code works fine if #MODE_READ is used instead.
Code: Select all
OpenFile(1, "S:Startup-Sequence", #MODE_READWRITE)
While Not Eof(1) Do NPrint(ReadLine(1))
CloseFile(1)