Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I want to archive a folder but want to exlude all media files.

How do I leave out:

*.avi *.flac

when archiving?

share|improve this question
Asked and Answered here also....superuser.com/questions/28162/… – Moab Sep 7 '10 at 22:24

1 Answer

up vote 6 down vote accepted

Only possible in command line version, doesn't work in the GUI [Add to Archive] dialog

7z.exe a Archive.7z C:\Folder\* -r -x!*.avi -x!*.flac
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.