Java Path File Check nio isDirectory(Path fileOrDir, LinkOption... options)

Here you can find the source of isDirectory(Path fileOrDir, LinkOption... options)

Description

is Directory

License

Apache License

Declaration

public static boolean isDirectory(Path fileOrDir, LinkOption... options) 

Method Source Code

//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*/
}

Related

  1. isAbsolutePath(String path)
  2. isAsciiText(Path p)
  3. isBallerinaProject(Path path)
  4. isBinary(Path file)
  5. isContained(Path contained, Path container)
  6. isDirectory(Path value)
  7. isDirectoryEmpty(Path dir)
  8. isDirectoryEmpty(Path directory)
  9. isDirectoryEmpty(Path path)