I just have a quick question about how to get the length of a file containing hexadecimal numbers. For example:
724627916C
The only way I can think is to convert hex value to binary:
724627916C => 0111001001000110001001111001000101101100
then count the bits of binary value. Just wondering if this is the correct way? Thanks