Jep.
CreateFile sagt im Bezug auf
OPEN_ALWAYS
folgendes:
Zitat:
Opens a file, always.
If the specified file exists, the function succeeds and the last-error code is set to ERROR_ALREADY_EXISTS (183).
If the specified file does not exist and is a valid path to a writable location, the function creates a file and the last-error code is set to zero.
Dementsprechend vermute ich, dass bereits dieser Aufruf bereits den 183 erzeugt und durch irgendeinen Logik Fehler (evtl. Der, den Luckie schon gefunden hatte) liest deine nachfolgende Routine den alten Code aus.
Edit:
Warum machst du das ganze Gedöhns eigentlich manuell mit der
WinAPI und verwendest nicht
TFileStream
?