I have a huge binary file from which I want to read some bytes from exact positions in the file. How can I access specific bytes from binary file not having to loop through all bytes from the beginning of the file?
Thanx,
I have a huge binary file from which I want to read some bytes
Share
Make sure you open the file with the “b” attribute (for example:
file("myfile.bin", "rb")). Then use theseek()method of the file object.Look here: http://docs.python.org/release/2.4.4/lib/bltin-file-objects.html