Java

How to Check Hidden File in Java1 min read

Java Code:

Java isHidden() method of File class to perform this check. This method returns a boolean value (true or false), if file is hidden then this method returns true otherwise it returns a false value.

Leave a Comment