Java tutorial
//package com.java2s; //License from project: Apache License import java.io.File; public class Main { public static File getFiles(String path, String fileName) { File f = new File(path); File[] files = f.listFiles(); if (files == null) { return null; } if (null != fileName && !"".equals(fileName)) { for (int i = 0; i < files.length; i++) { File file = files[i]; if (fileName.equals(file.getName())) { return file; } } } return null; } }