Java tutorial
import java.io.File; public class Main { public static void main(String[] args) { // create new file File f = new File("c:/test.txt"); // true if the file path is a hidden file boolean bool = f.isHidden(); // get the path String path = f.getPath(); System.out.print(path + " is file hidden? " + bool); } }