Here you can find the source of isDirectory(Path value)
public static boolean isDirectory(Path value)
//package com.java2s; //License from project: Open Source License import java.nio.file.*; public class Main { public static boolean isDirectory(Path value) { return Files.isDirectory(value); }// w w w . jav a 2s.c o m }