Exclude files

Files and directories can be excluded from synchronization by specifying include and exclude filter lists. Only if they match at least one entry in the include list and none of the entries in the exclude list they pass filtering. Each list item is a file or directory path relative to synchronization base directories. Optionally wild cards like '*' or '?' may be used.


Example: Exclude all files and folders located in subdirectories of base directories

Exclude: *\*



Example: Include only files and folders located in subdirectories of base directories

Include: *\*



Example: Mirror-sync from C:\Source to D:\Target

Exclude single file C:\Source\file.txt:
     Filter: \file.txt

Exclude single folder C:\Source\sample\subfolder:
    Filter: \sample\subfolder\

Exclude all *.tmp files located in subfolder only:
    Filter: \sample\subfolder\*.tmp

Exclude files (and folders) named thumbs.db in all directories:
    Filter: *\thumbs.db

Exclude files and folders that have test as part of their name:
    Filter: *test*

Exclude multiple entries; separate by semicolon or newlines:
    Filter: *.tmp; *.doc; *.bak




Note: