File tempFile = new File("c:/temp/temp.txt"); boolean exists = tempFile.exists();
System.out.println(new File("YourPath").exists());
import java.io.File; File tmpDir = new File("/var/tmp"); boolean exists = tmpDir.exists();