Java tutorial
//package com.java2s; import java.io.File; public class Main { public static long getFileSize(File file) { if (file.exists() && file.isFile()) { return file.length(); } return 0; } }