Here you can find the source of isDirectory(Path fileOrDir, LinkOption... options)
public static boolean isDirectory(Path fileOrDir, LinkOption... options)
//package com.java2s; //License from project: Apache License import java.nio.file.Files; import java.nio.file.LinkOption; import java.nio.file.Path; public class Main { public static boolean isDirectory(Path fileOrDir, LinkOption... options) { return Files.isDirectory(fileOrDir, options); }/* w ww.j a v a 2 s . co m*/ }