11

I have a folder containing subfolders named A, B, C, and some files like file1.doc, file2.bat, file3.doc.

Is there any option of the WinRAR software so that, when I zip the folder, I can tell it to exclude folder A, .bat, files and files whose name is file3.doc?

Trang
  • 213

2 Answers2

18

You can automate compressing files with WinRAR and provide an exclusion list using a command line interface. You can exclude the files and folders using -x switch in the command.

Run Command Prompt (cmd.exe) and type the following command:

"C:\Program Files\WinRAR\Rar.exe" a -x*\A -x*.bat -xfile3.doc folder.rar folder

If you want to automate your GUI, you can add this command to a context menu when you right-click on a folder. You would need to add the following to the registry:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\shell\rar_with_exclusion]
@="WinRAR with exclusion list"

[HKEY_CLASSES_ROOT\Directory\shell\rar_with_exclusion\command]
@="\"C:\\Program Files\\WinRAR\\Rar.exe\" a -x*\\a -xfile3.doc -x*.bat \"%1.rar\" \"%1\""

Refer to this document to learn how to modify the registry.

This is what you will get in the end:

enter image description here

techraf
  • 4,952
0

Go inside a Folder And select all press CNTRL and deselect the folder you don`t want to compress / zip and Right click in options you can now Compress excluding the folder and files