We keep world backups for a long time, so there are a lot of the world-save files, daily going back over 10 years, and hourly going back a few years.
There were "dual" backups in some years, I just checked the 2014 years.
At the time, the backup program zipped the "Saves" directory first into an Hourly destination (timestamped saves_141124_0000.rar) and since it was just midnight, also into the Daily destination, timestamped saves_141124.rar.
At some point looks like I merged both into the "2014" directory, and for someday to remove the duplicates.
So I just ran a command to get the checksums of all the files, with powershell
Code: Select all
Get-ChildItem -File | ForEach-Object { Get-FileHash $_.FullName }
Code: Select all
SHA256 8811A991CD2509639A6DE... saves_141121.rar
SHA256 8811A991CD2509639A6DE... saves_141121_0001.rar
SHA256 FD8DF1F1AB7B1EEC2B4B8... saves_141122.rar
SHA256 FD8DF1F1AB7B1EEC2B4B8... saves_141122_0001.rar
SHA256 9E42B7FA7519A52211C22... saves_141123.rar
SHA256 9E42B7FA7519A52211C22... saves_141123_0000.rar
SHA256 D234EDB0692C2E5FF1F0A... saves_141124.rar
SHA256 A9746394C99E333D07BAB... saves_141124_0000.rar
So, just a single bit flipped.
Original: 0x71 hex, 0111 0001 binary
Corrupted: 0x61 hex, 0110 0001 binary
So when trying to unzip the archive... There was no recovery-record set on the archives at the time, so it's a good thing I have these duplicates.
I just kept all those files on various disks, finally got around to setting up a NAS with a whole lot of storage, to put it all in one place where it can be tamed. Thank you for donating! It's a Synology DS1522+ with four WD Red Plus 12tb drives inside, still room for one more, although there's not much need to keep hourly backups for more than 3 years.
Just a reminder to protect your valuable data. (and this one world save from 10 years ago definitely is as precious as the wedding or birth photos!

- If you use Winrar to compress your files, you can add a Recovery Record, which will make it possible to extract the archive even if many bits get flipped.
- Keep your files in multiple locations. But also, stay organized about which copy is the main one and which one is just the mirror (which you don't use as an actual working copy... that sure did set me back for a bit). If you do this, occasionally compare the files in a compare-contents way (not just the filenames and last change date).