Python Forum
find the header location in a .bin file without reading the whole file at a time
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
find the header location in a .bin file without reading the whole file at a time
#1
The below code is okay to find the header locations in a .bin file. But I don't want to read whole file at a time. Because the header has different byte format. If I read the whole as a uint16, I will not be able to get those bytes(some are uint8 and uint32). What is the solution so that I can read the file to find the header location and then I can assign the datatype for the header for the information. Basically discard all data before the header and read the header(2bytes-2bytes[little endian]-2bytes[big endian]-1bytes-1byte-......) Thanks in advance!!!!

with open(filename, mode='rb') as f:
    b = f.read()
    np_data = np.frombuffer(b, dtype=np.uint16)
    findIndex = np.where(np_data == int("00000050", 16))
Larz60+ write Mar-05-2021, 04:21 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Fixed for you this time. Please use bbcode tags on future posts.
Also fixed indentation
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  How to write variable in a python file then import it in another python file? tatahuft 4 845 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  PIP file location JackG29 1 505 Dec-01-2024, 12:59 PM
Last Post: snippsat
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,000 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  FileNotFoundError: [Errno 2] No such file or directory although the file exists Arnibandyo 0 786 Aug-12-2024, 09:11 AM
Last Post: Arnibandyo
  "[Errno 2] No such file or directory" (.py file) IbrahimBennani 13 6,041 Jun-17-2024, 12:26 AM
Last Post: AdamHensley
  Reading an ASCII text file and parsing data... oradba4u 2 1,358 Jun-08-2024, 12:41 AM
Last Post: oradba4u
  file open "file not found error" shanoger 8 5,757 Dec-14-2023, 08:03 AM
Last Post: shanoger
Sad problems with reading csv file. MassiJames 3 2,443 Nov-16-2023, 03:41 PM
Last Post: snippsat
  Need to replace a string with a file (HTML file) tester_V 1 1,847 Aug-30-2023, 03:42 AM
Last Post: Larz60+
  Reading a file name fron a folder on my desktop Fiona 4 2,011 Aug-23-2023, 11:11 AM
Last Post: Axel_Erfurt

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020