Based on documentation: https://learn.microsoft.com/en-us/dotnet/api/microsoft.win32.filedialog.filter?view=net-5.0#examples
I can see filtering with 'OR' logic is possible:
Filter by "Word Documents" OR "Excel Worksheets" OR "PowerPoint Presentations" OR "Office Files" OR "All Files"
Filter = ".doc|.xls|.ppt|.doc;.xls;.ppt|.";
So character '|' is for 'OR' logic. Is there any character to use 'AND' logic ?
Example : "*.doc AND !somethingToIgnore.doc" to just ignore one file but take all other .doc files.