As this field takes a regular expression, remember:
- Directory separators are forward slashes /Â (not backslashes
\
) - Any character is a full stop (period)
.
- Any string of characters is
.*
(not just *
) - A full stop (period) must be escaped like this
\\.
See Regular Expressions or you can find more information on the web, such as the Mozilla Regular Expression page.