Here you can find the source of isPictureFile(Path file)
public static boolean isPictureFile(Path file)
//package com.java2s; //License from project: Open Source License import java.nio.file.Path; public class Main { public static boolean isPictureFile(Path file) { return file.toString().toLowerCase().endsWith(".png") || file.toString().toLowerCase().endsWith(".jpg") || file.toString().toLowerCase().endsWith(".jpeg") || file.toString().toLowerCase().endsWith(".bmp") || file.toString().toLowerCase().endsWith(".gif") || file.toString().toLowerCase().endsWith(".tif") || file.toString().toLowerCase().endsWith(".tiff") || file.toString().toLowerCase().endsWith(".ico"); }/*from w ww . j av a 2 s . c o m*/ }