table code updates

This commit is contained in:
Iaan D'Souza-Wiltshire 2017-10-30 18:02:41 -07:00
parent cf42ceaaa5
commit 0da8c46e30

View File

@ -220,28 +220,28 @@ The following table describes how the wildcards can be used and provides some ex
<th>Example matches></th> <th>Example matches></th>
</tr> </tr>
<tr> <tr>
<td><b>*</b> (asterisk)</td> <td><b>\*</b> (asterisk)</td>
<td>Replaces any number of characters. <br />Only applies to files in the last folder defined in the argument. </td> <td>Replaces any number of characters. <br />Only applies to files in the last folder defined in the argument. </td>
<td>Replaces a single folder. <br />Use multiple <b>*</b> with folder slashes <b>\</b> to indicate multiple, nested folders. </br>After matching to the number of wilcarded and named folders, all subfolders will also be included.</td> <td>Replaces a single folder. <br />Use multiple <b>\*</b> with folder slashes <b>\\</b> to indicate multiple, nested folders. </br>After matching to the number of wilcarded and named folders, all subfolders will also be included.</td>
<td> <td>
<ol> <ol>
<li>C:\MyData\my\<b>*</b>.txt</li> <li>C:\MyData\my\\<b>\*</b>.txt</li>
<li>C:\somepath\<b>*</b>\Data</li> <li>C:\somepath\\<b>\*</b>\Data</li>
<li>C:\Serv\<b>*</b>\<b>*</b>\Backup <li>C:\Serv\\<b>\*</b>\\<b>\*</b>\Backup
</ol> </ol>
</td> </td>
<td> <td>
<ol> <ol>
<li><i>C:\MyData\<b>notes</b>.txt</i></li> <li><i>C:\MyData\\<b>notes</b>.txt</i></li>
<li>Any file in: <li>Any file in:
<ul> <ul>
<li><i>C:\somepath\<b>Archives</b>\Data</i> and its subfolders</li> <li><i>C:\somepath\\<b>Archives</b>\Data</i> and its subfolders</li>
<li><i>C:\somepath\<b>Authorized</b>\Data</i> and its subfolders</li> <li><i>C:\somepath\\<b>Authorized</b>\Data</i> and its subfolders</li>
</ul> </ul>
<li>Any file in: <li>Any file in:
<ul> <ul>
<li><i>C:\Serv\<b>Primary</b>\<b>Denied</b>\Backup</i> and its subfolders</li> <li><i>C:\Serv\\<b>Primary</b>\\<b>Denied</b>\Backup</i> and its subfolders</li>
<li><i>C:\Serv\<b>Secondary</b>\<b>Allowed</b>\Backup</i> and its subfolders</li> <li><i>C:\Serv\\<b>Secondary</b>\\<b>Allowed</b>\Backup</i> and its subfolders</li>
</ul> </ul>
</ol> </ol>
</td> </td>
@ -268,15 +268,15 @@ The following table describes how the wildcards can be used and provides some ex
<td> <td>
<ol> <ol>
<li><i>C:\MyData\my<b>1</b>.zip</i></li> <li><i>C:\MyData\my<b>1</b>.zip</i></li>
<li>Any file in <i>C:\somepath\<b>P</b>\Data</i> and its subfolders</li> <li>Any file in <i>C:\somepath\\<b>P</b>\Data</i> and its subfolders</li>
<li>Any file in <i>C:\somepath\test0<b>1</b>\Data</i> and its subfolders</li> <li>Any file in <i>C:\somepath\test0<b>1</b>\Data</i> and its subfolders</li>
</ol> </ol>
</td> </td>
</tr> </tr>
<tr> <tr>
<td>Environment variables</td> <td>Environment variables</td>
<td>The defined variable will be populated as a path when the exclusion is evaluated</td> <td>The defined variable will be populated as a path when the exclusion is evaluated.</td>
<td>Same as file and extension use </td> <td>Same as file and extension use. </td>
<td> <td>
<ol> <ol>
<li><b>%ALLUSERSPROFILE%</b>\CustomLogFiles</li> <li><b>%ALLUSERSPROFILE%</b>\CustomLogFiles</li>