Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { File f = new File("c:/test.txt"); // returns true if the file can be read boolean bool = f.canRead(); System.out.print("File can be read: " + bool); } }