Java tutorial
//package com.java2s; import java.io.File; public class Main { public static boolean isVideo(String file) { if (file.endsWith("mp4")) return true; return false; } public static boolean isVideo(File file) { return isVideo(file.getName()); } }