String whishedType=Caster.toString(whishedTypes.getE(i)).trim().toLowerCase();
if(whishedType.equals("*")) return;
// check mimetype
if(ListUtil.len(whishedType, "/", true)==2){
sub=MimeType.getInstance(whishedType);
if(mt.match(sub)) return;
}
// check extension
if(ext!=null && !strict){
if(whishedType.startsWith("*."))whishedType=whishedType.substring(2);