I need a to find file according to its name in directory tree. And then show a path to this file. I found something like this, but it search according extension. Could anybody help me how can I rework this code to my needs...thanks
public class filesFinder { public static void main(String[] args) { File root = new File("c:\\test"); try { String[] extensions = {"txt"}; boolean recursive = true; Collection files = FileUtils.listFiles(root, extensions, recursive); for (Iterator iterator = files.iterator(); iterator.hasNext();) { File file = (File) iterator.next(); System.out.println(file.getAbsolutePath()); } } catch (Exception e) { e.printStackTrace(); } } }