I'm trying to read struct data from specific position in a a binary file. Found out that I can use import std.stdio and its File, however all i seem to find is all about string handling.
I have c-code written data on binary files that compose of several different structs and they all, as far as I understand coding lay in a oneliner. In order to find specific struct I need to, like in old c,
- Open file for reading .... (binary read??)
- using sizeof and move to startposition of struct data to read
- read data (struct.sizeof data) into receivingbuffer and
- Close file
Documentation for std.stdio.File # read talks about reading entire or up to size but can't find how to read as below c-code line?
fseek(filehandle, sizeof(firstStructData), SEEK_SET));
read(filehandle, (char *)nextReceivingBuffer, sizeof(nextReceivingBuffer))
Any ideas or hints?
Try
File.seek
andFile.rawRead
. They work like their C counterparts, butrawRead
determines the read count from the size of the output buffer you hand it.