Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { File f = new File("c:/test.txt"); boolean bool = f.exists(); if (bool) { long len = f.length(); String path = f.getPath(); System.out.print(path + " file length: " + len); } } }