Note : Directories always pass filters.
Filter characters
* = zero or more charcter wildcard
? = Single character wildcard
/ = Separator between two filters
Filter examples
* | All files will pass the filter |
*.txt | Files ending in '.txt' will pass the filter |
fred* | Files starting with 'fred' will pass the filter |
*.html/*.jsp | Files ending with '.html' or '.jsp' will pass the filter |
|