Android Zip Entry Get isIgnore(final ZipEntry ze)

Here you can find the source of isIgnore(final ZipEntry ze)

Description

is Ignore

Declaration

public static boolean isIgnore(final ZipEntry ze) 

Method Source Code

//package com.java2s;
import java.util.zip.ZipEntry;

public class Main {
    public static boolean isIgnore(final ZipEntry ze) {
        return ze == null
                || (ze.getName() != null && ze.getName().startsWith(
                        "__MACOSX"));
    }//from  w w w .j a  va2  s . c  om
}

Related

  1. getEntryName(ZipEntry entry)
  2. getEntryName(ZipEntry entry)
  3. GetFileList( String zipFileString, boolean bContainFolder, boolean bContainFile)
  4. GetFileList(String zipFileString, boolean bContainFolder, boolean bContainFile)
  5. GetFileList(String zipFileString, boolean bContainFolder, boolean bContainFile)
  6. getExtension(final ZipEntry ze)