BinaryRead[stream]BinaryRead[stream, type]BinaryRead[stream, {$type_1$, $type_2$, ...}]strm = OpenWrite[BinaryFormat -> True]
BinaryWrite[strm, {97, 98, 99}]
Close[strm];
strm = OpenRead[%, BinaryFormat -> True]
BinaryRead[strm]
BinaryRead[strm, {"Character8", "Character8"}]
If you read past the end of the file, you will get EndOfFile symbols:
BinaryRead[strm, {"Character8", "Character8"}]
DeleteFile[Close[strm]];