Let me explain my problem with an image of the compare of project folder and zip extracted folder.
In the below image the left side is project folder and right side is zip extracted folder.
There's 'manual' a way, with 7zip command line, to "fix" the autobackups for this purpose --> It could be possibly automated with a batch file, so you'll only have to execute it before comparing
Download 7zip, install it and add it to your PATH. Start cmd.exe in the Autobackups folder. The executed commands for a given "myzipfile.zip" would be
del *.bas Delete existing .bas files in the working dir
7z -e myzipfle.zip B4A/*.bas -r- Will extract all *.bas from the zipped file B4A folder, non-recursively
7z -d myzifile.zip B4A/*.bas -r- Will delete all *.bas files from the zipped file B4A folder, non-recursively
7z -a myzipfile.zip *.bas Add the extracted files to the zipped file root folder
Since initially, in the zipped files, the shared files will be mixed with the not-shared, above wildcards won't work. Instead, for existing backups, the batch file should perform these operations on the individual files that are shared. Or, if all the shared files have a common prefix or sufix, change the wildcard accordingly (for instance *shared.bas)