Differences
This shows you the differences between the selected revisions of the page.
2009-09-10 | 2009-11-21 | ||
make any operation non recursive (martin) | masks cannot be combined in scripting (martin) | ||
Line 6: | Line 6: | ||
* Defining [[ui_transfer_preset#autoselection_rule|autoselection rule for transfer settings preset]]. | * Defining [[ui_transfer_preset#autoselection_rule|autoselection rule for transfer settings preset]]. | ||
* Defining [[ui_editor_preferences#autoselection|autoselection mask for editors]]. | * Defining [[ui_editor_preferences#autoselection|autoselection mask for editors]]. | ||
- | * Various [[script commands]]. | + | * Various [[script_commands|script commands]]. |
===== Filename Mask ===== | ===== Filename Mask ===== | ||
- | You can specify several masks separated by semicolon ('';'') or comma ('',''). | ||
When specifying the mask you can use following patterns: | When specifying the mask you can use following patterns: | ||
Line 29: | Line 28: | ||
A mask ending with slash matches only directories. The mask ''*/'' matches any directory. | A mask ending with slash matches only directories. The mask ''*/'' matches any directory. | ||
- | For example to transfer only HTML files located in any directory, use the include mask ''*/; *.html''. | + | For example to transfer only HTML files located in any directory, use the include mask ''*/; *.html'' (see below for combining masks). |
To make operation non-recursive use exclude mask ''*/''. | To make operation non-recursive use exclude mask ''*/''. | ||
Line 43: | Line 42: | ||
For convenience, a masks ''*.*'' and ''*.'' are exceptions matching any file and any file without an extension, respectively, even if its name does not include any dot. | For convenience, a masks ''*.*'' and ''*.'' are exceptions matching any file and any file without an extension, respectively, even if its name does not include any dot. | ||
- | ===== Exclude mask ===== | + | ===== Combining masks and exclude mask ===== |
+ | In most contexts (basically everywhere except for [[script_commands|script commands]]), you can combine several masks using semicolon ('';'') or comma ('',''). | ||
You can add exclude mask by separating it by pipe (''|'') from the include mask. To use exclude mask only, start with pipe straight away. | You can add exclude mask by separating it by pipe (''|'') from the include mask. To use exclude mask only, start with pipe straight away. |