Open In App

Files isHidden() method in Java with Examples

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

isHidden() method of java.nio.file.Files help us to check whether or not a file is hidden. This method return true if the file is considered hidden else it returns false. The exact definition of hidden is platform or provider dependent.

On UNIX, for example, a file is considered to be hidden if its name begins with a period character (‘.’). On Windows, a file is considered hidden if it isn’t a directory and the DOS hidden attribute is set. Depending on the implementation this method may require to access the file system to determine if the file is considered hidden.

Syntax:

public static boolean isHidden(Path path)
                       throws IOException

Parameters: This method accepts a parameter path which is the path to the file to check.

Return value: This method returns true if the file is considered hidden.

Exception: This method will throw following exceptions:

  1. IOException: if an I/O error occurs
  2. SecurityException: In the case of the default provider, and a security manager is installed, the checkRead method is invoked to check read access to the file.

Below programs illustrate isHidden(Path) method:
Program 1:




// Java program to demonstrate
// Files.isHidden() method
  
import java.io.IOException;
import java.nio.file.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create object of Path
        // This file is not hidden
        Path path
            = Paths.get(
                "D:\\GIT_EWS_PROJECTS\\logger"
                + "\\src\\logger"
                + "\\GFG.java");
  
        // check whether this file
        // is hidden or not
        boolean result;
  
        try {
            result = Files.isHidden(path);
  
            System.out.println("File " + path
                               + " is Hidden = "
                               + result);
        }
        catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}


Output:

Program 2:




// Java program to demonstrate
// Files.isHidden() method
  
import java.io.IOException;
import java.nio.file.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create object of Path
        // This file is available on windows and
        // It is hidden.
  
        Path path
            = Paths.get(
                "D:\\User Aman\\"
                + "Documents\\MobaXterm\\"
                + "\\ArrayList.docx");
  
        // check whether this file
        // is hidden or not
  
        boolean result;
  
        try {
            result = Files.isHidden(path);
  
            System.out.println("File " + path
                               + " is Hidden = "
                               + result);
        }
        catch (IOException e) {
  
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}


Output:

Reference: https://docs.oracle.com/javase/10/docs/api/java/nio/file/Files.html#isHidden(java.nio.file.Path)



Last Updated : 29 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads