BinaryReadList[stream]BinaryReadList[stream, type]BinaryReadList[stream, {$type_1$, $type_2$, ...}]strm = OpenWrite[BinaryFormat -> True]
BinaryWrite[strm, {97, 98, 99}]
Close[strm];
strm = OpenRead[%, BinaryFormat -> True]
BinaryReadList[strm]
DeleteFile[Close[strm]];