.dat Files haben kein offizielles Format - so weit so gut. Wenn Du jetzt zum Beispiel ein eigenes Format willst, welches nicht typisiert ist, dann empfehle ich Dir Streams. Das Dateiformat musst Du Dir selbst zusammenbasteln. Ein Beispiel
Code:
// File ID 2 Bytes
"MX"
// File Version Major 1 Byte
$01
// File Version Minor 1 Byte
$0F
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Erster Eintrag Größe in Bytes inkl. diesem Block 4 Bytes (Integer)
$0000000F
// Daten $0000000F = 16 Bytes - 4 Bytes (head) = 12 Bytes Daten
$45 $32 $14 $AF
$6E $F2 $65 $C0
$00 $02 $00 $01
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Zweiter Eintrag Größe in Bytes inkl. diesem Block 4 Bytes (Integer)
$000000100
// Daten $00000100 = 256 Bytes - 4 Bytes (head) = 252 Bytes Daten
.....
...
...