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 h
public static File find(String path, String fName) { File f = new File(path); if (fName.equalsIgnoreCase(f.getName())) return f; if (f.isDirectory()) { for (String aChild : f.list()) { File ff = find(path + File.separator + aChild, fName); if (ff != null) return ff; } } return null; }