Exclude items

Files and directories are only considered for synchronization if they pass the filter. They have to match at least one entry in the include list and none of the entries in the exclude list:

  1. Each list item must be a file or directory path relative to synchronization base directories

  2. Multiple items must be separated by ';' or a new line

  3. Wild cards like '*' or '?' may be used


Example: Exclude items for mirror-sync from C:\Source to D:\Target

Single file C:\Source\file.txt:
     Exclude: \file.txt

Single folder C:\Source\subfolder:
    Exclude: \subfolder\

All files (and folders) named thumbs.db:
    Exclude: *\thumbs.db

All *.tmp files located in subfolder only:
    Exclude: \subfolder\*.tmp

Files and folders containing temp somewhere in their path:
    Exclude: *temp*

Multiple entries separated by semicolon:
    Exclude: *.tmp; *.doc; *.bak



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: *\*