|
File name syntax
|
| [a-d] specifies one character that is within the range a to d - it can be a or b or c or d.
| |
| [!k-m] specifies one character that is NOT within the range k to m - it CANNOT be k, l, m. All other characters can be in this place.
| |
| [0-9]* will match all names starting with an number for example: 1toGo.htm, 7B, 9. Names that do not match: a3.zip, xcde.
| |