{{theTime}}

Search This Blog

Total Pageviews

How to filter the file names in a directory using Java.

 
public String[] filterFileNames() throws IOException
   String pattern = "Today";
   final Pattern p = Pattern.compile(pattern);
   FilenameFilter filter = new FilenameFilter() {
   public boolean accept(File fdir, String fname)
   {
       Matcher m = p.matcher(fname);
       return m.matches();
   }};
   File dirFile = new File( "directory path" );
   String[] filteredFiles = dirFile.list(filter); 
   return filteredFiles ;
}



No comments:

Top LLMs in 2025

Navigating the AI Landscape: Key Differences Between Top LLMs in 2025 As of late September 2025, the large language model (LLM) arena is m...