Is there a easy way to get the filePath provided I know the Filename?
Look at the methods in the java.io.File class:
File file = new File("yourfileName"); String path = file.getAbsolutePath();