Java Path File Check nio isHidden(Path value)

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

Description

is Hidden

License

Open Source License

Declaration

public static boolean isHidden(Path value) throws IOException 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.io.IOException;

import java.nio.file.*;

public class Main {
    public static boolean isHidden(Path value) throws IOException {
        return Files.isHidden(value);
    }/*from  w  w w .j a va2 s.co  m*/
}

Related

  1. isFileWritable(final Path file)
  2. isFolder(Path path)
  3. isHidden(final Path path)
  4. isHidden(Path path)
  5. isHidden(Path path)
  6. isJniNativeFunction(Path path)
  7. isJSON(final Path file)
  8. isJsonFile(Path filePath)
  9. isOva(final Path filePath)