List of utility methods to do Path Search
String | searchFilePath(String fileName) Search an absolute file path from current working directory recursively. java.io.File dir = new java.io.File(System.getProperty("user.dir")); return recursiveSearch(dir, fileName); |