For learning purposes, I want to make a simple archive format where I can put in files and extract them. No compression. What resources, or techniques would be recommended for creating something like this?
The result wold be something like files.bin
Thanks
Put a header at the beginning of the archive with offsets to where each file lies inside archive. Or just store them sequentially, putting the size before each file.