puedes usar esto
Código PHP:
import java.io.*;
public class existe
{
/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
String sFichero = "fichero.txt";
File fichero = new File(sFichero);
if (fichero.exists())
System.out.println("El fichero " + sFichero + " existe");
else
System.out.println("Pues va a ser que no");
}
}