Android File Attribute Get isHidden(File file)

Here you can find the source of isHidden(File file)

Description

Is the given file hidden

Declaration

public static boolean isHidden(File file) 

Method Source Code

//package com.java2s;
import java.io.File;

public class Main {
    /** Is the given file hidden */
    public static boolean isHidden(File file) {
        return file.isHidden() || file.getName().startsWith(".");
    }/*from  w w w  . ja v  a2s.  c om*/
}