Return | Method | Summary |
---|---|---|
boolean | isHidden() | Tests whether the file named by this abstract pathname is a hidden file. |
import java.io.File;
public class Main {
public static void main(String[] args) {
File aFile = new File("abc.txt");
System.out.println(aFile.isHidden());
}
}
The output:
false
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |