Java tutorial
//package com.java2s; /** * Title: efa - elektronisches Fahrtenbuch fr Ruderer * Copyright: Copyright (c) 2001-2011 by Nicolas Michael * Website: http://efa.nmichael.de/ * License: GNU General Public License v2 * * @author Nicolas Michael * @version 2 */ import java.io.*; public class Main { public static boolean canOpenFile(String d) { FileReader f; try { f = new FileReader(d); f.close(); } catch (Exception e) { return false; } return true; } }