Search code examples
compression7zipwinzip

How to avoid thumbs.db files in compression


Is there a 7zip or winzip command to use so that the compression avoids thumbs.db files?


Solution

  • For 7zip,-x is the file exclusion option switch.

    7z.exe a test.7z C:test* -r -x!thumbs.db
    

    See Excluding Files at the following link.