So can anyone tell me how I might write a script to read this file, and translate this "simple sequence of unsigned 4-byte quantities (little-endian)" into fids that i can work with?
In C, just load them into an int array. In a script, try "od -An -t x4 -w4 < fids/100".

Peter