From 8bf668665b107469086f16cb8ad23e47d479d2b4 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:14:37 +0200 Subject: 4.0 --- BUILD/Help/html/ExcludeSubfolder.html | 107 ++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 BUILD/Help/html/ExcludeSubfolder.html (limited to 'BUILD/Help/html/ExcludeSubfolder.html') diff --git a/BUILD/Help/html/ExcludeSubfolder.html b/BUILD/Help/html/ExcludeSubfolder.html new file mode 100644 index 00000000..49215730 --- /dev/null +++ b/BUILD/Help/html/ExcludeSubfolder.html @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + +

Exclude files

+

Excluding +files and directories works by specifying a phrase that is compared +against a file or directory path. Only if the file or directory +matches at least one entry in the include list and none of the +entries in the exclude list it passes filtering. The phrase is also a +file or directory name, but it must be relative to the base +sync-directory and may additionally include wild cards like '*' or +'?'.

+


+

+

Example: +Exclude all sub directories

+

+

+ Include: *
Exclude: + *\

+

+

+

This +will exclude all objects within the two directories that end with a +'\' +character, which is interpreted as the end of a directory name.

+


+

+

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 sub directories:
    Filter: + *\thumbs.db

+

Exclude + all 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:
A filter phrase + „\fileOrDir” + matches both a file or a directory named „fileOrDir”. + In most cases there is no need to distinguish between a phrase to be + used for files or directories. In cases where it is clear you want + to process directories only, you can give a hint by adding a + backslash: „\fileOrDir\”. + Now this filter will be matched against directories only.

+

+

+


+

+

+

+ Note:
In most cases + manually specifying a filter phrase is not necessary! You can + exclude files, directories and even complete lists of both directly + on main grid via context menu.

+

+

+ + \ No newline at end of file -- cgit