the end of the file. This is not what you want with empty files as the seek
position must show to zero (only "virgin" files).
Signed-off-by: Roland Häder <roland@mxchange.org>
// Simple flush file header which will create it.
$this->flushFileHeader();
+ // Seek to beginning of file
+ $this->getIteratorInstance()->rewind();
+
+ // And update seek position ...
+ $this->updateSeekPosition();
+
+ // ... to write it back into the file
+ $this->flushFileHeader();
+
//* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput(sprintf('[%s:%d:] EXIT!!', __METHOD__, __LINE__));
}