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?
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.
精彩评论