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:
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 like '*' or '?' may be used
Example: Exclude items for mirror-sync from C:\Source to D:\Target
Single
file C:\Source\file.txt: Single
folder C:\Source\subfolder: All
files (and folders) named thumbs.db: All
*.tmp
files
located in subfolder
only: Files
and folders containing temp
somewhere
in their path: Multiple
entries separated by semicolon:
Exclude:
\file.txt
Exclude:
\subfolder\
Exclude:
*\thumbs.db
Exclude:
\subfolder\*.tmp
Exclude:
*temp*
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: *\*
Note For
simple exclusions just right-click and exclude one or a list of
items directly on main grid via context menu.
A filter string 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:
"dirname\".