File megBag=new File("src/resources/meg_data"); fileList=megBag.listFiles(fileFilter); private static FileFilter fileFilter=new FileFilter(){ public boolean accept(File pathname) { String tmp=pathname.getName().toLowerCase(); if(tmp.endsWith(".ini") || tmp.endsWith(".INI")){ return true; } return false; } };