A few months ago I tried to merge two partitions on my hard drive, but because of a power failure I lost all my data and the partitions lost the format.
Obviously I tried to recover my files with several utilities, but I recovered my files with different contents, until I discovered that with a hex editor could open my harddrive and according to a known file header I was able recover some files, but it is a huge of work, so I thought about creating a small program that:
1º open the hard drive in hexadecimal mode.
2º According to a predefined list of header files , retrieve the current file (read the data) until the next header file.
I know that some files will not recover properly, but I think I have good chances of retrieving videos and songs.
The languages I know are: C #, Java, C + + and Python. I do not care if the process take days; I just need a tool, addon or wrapper or idea to help me start this project.
Well, my question is: How I can read a hard disk as hexadecimal data (WinHex can do it, but not programmatically) then read this data and compare it with a known header file?
Thanks in advance.