Program to get a directory is hidden or not in Java

bookmark

import java.io.File;

public class Main {
   public static void main(String[] args) {
      File file = new File("C:/Demo.txt");
      System.out.println(file.isHidden());
   }
}

 

 

Output:
True