Java Path File Check nio isDirectory(Path value)

Here you can find the source of isDirectory(Path value)

Description

is Directory

License

Open Source License

Declaration

public static boolean isDirectory(Path value) 

Method Source Code

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

Related

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