+Type | Substring/Regex | Text | Description | Sample match |
+Full Name | false | \verbatim test.txt \endverbatim | Will match files named "test.txt" | text.txt |
+Full Name | true | \verbatim bomb \endverbatim | Will match files with "bomb" anywhere their name | Pipe bomb.png |
+Full Name | true | \verbatim virus.*\.exe \endverbatim | Will match files with "virus" followed by ".exe" anywhere their name | bad_virus.exe |
+Extension Only | false | \verbatim zip \endverbatim | Will match .zip files | myArchive.zip |
+Extension Only | false | \verbatim zip,rar,7z \endverbatim | Will match .zip, .rar, and .7z files | anotherArchive.rar |
+Extension Only | true | \verbatim jp \endverbatim | Will match .jpg, .jpeg files, and any others with "jp" in the extension | myImage.jpg |
+
+