Exclude Items

File exclude filter

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

  • Each list item must be a file or directory path relative to synchronization base directories.
  • Multiple items must be separated by ; or a new line.
  • Wild cards * and ? may be used: * means zero or more characters while ? represents exactly one character.


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

Description Filter phrase
Single file C:\Source\file.txt \file.txt
Single folder C:\Source\SubFolder \SubFolder\
All files (and folders) named thumbs.db *\thumbs.db
All *.tmp files located in SubFolder only \SubFolder\*.tmp
Files and folders containing temp somewhere in their path *temp*
Multiple entries separated by semicolon *.tmp; *.doc; *.bak
Exclude all subdirectories of the base directories *\
Exclude only *.txt files located in subdirectories of base directories \*\*.txt

Note
  • For simple exclusions just right-click and exclude one item or a list of items directly via the context menu on main dialog.
  • A filter phrase is compared against both file and directory paths. If you want to consider directories only, you can give a hint by appending a path separator.
  • On Windows both slash (/) and backslash (\) may be used as path separator characters.