I am seeking some wisdom on how to use File::Binary. I am looking to read in a binay file and once I hit a specific text string start reading and storing x number of ints and shorts.
It seems that File::Binary is the module to do that, but I have to admit I am completely lost as how to use it. I see the methods to read in 16 and 32 bit unsigned ints, but I don't understand how you read in the specific ones you are looking for.
I suppose using the seek method may help, but I don't know exactly where in the file the data structures I need begin which is why I have te search for the text string. Anyone have an code examples or some guidance for me on using this utility? Thanks!