|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.io.filefilter.AbstractFileFilter | +--org.apache.commons.io.filefilter.WildcardFilter
Filters files using the supplied wildcards.
This filter selects files, but not directories, based on one or more wildcards and using case-sensitive comparison.
The wildcard matcher uses the characters '?' and '*' to represent a
single or multiple wildcard characters.
This is the same as often found on Dos/Unix command lines.
The extension check is case-sensitive.
See FilenameUtils.wildcardMatch(java.lang.String, java.lang.String)
for more information.
For example:
File dir = new File("."); FileFilter fileFilter = new WildcardFilter("*test*.java~*~"); File[] files = dir.listFiles(fileFilter); for (int i = 0; i < files.length; i++) { System.out.println(files[i]); }
Field Summary | |
private String[] |
wildcards
Deprecated. The wildcards that will be used to match filenames. |
Constructor Summary | |
WildcardFilter(List wildcards)
Deprecated. Construct a new case-sensitive wildcard filter for a list of wildcards. |
|
WildcardFilter(String wildcard)
Deprecated. Construct a new case-sensitive wildcard filter for a single wildcard. |
|
WildcardFilter(String[] wildcards)
Deprecated. Construct a new case-sensitive wildcard filter for an array of wildcards. |
Method Summary | |
boolean |
accept(File file)
Deprecated. Checks to see if the filename matches one of the wildcards. |
boolean |
accept(File dir,
String name)
Deprecated. Checks to see if the filename matches one of the wildcards. |
Methods inherited from class java.lang.Object |
|
Field Detail |
private String[] wildcards
Constructor Detail |
public WildcardFilter(String wildcard)
wildcard
- the wildcard to matchIllegalArgumentException
- if the pattern is nullpublic WildcardFilter(String[] wildcards)
wildcards
- the array of wildcards to matchIllegalArgumentException
- if the pattern array is nullpublic WildcardFilter(List wildcards)
wildcards
- the list of wildcards to matchIllegalArgumentException
- if the pattern list is nullClassCastException
- if the list does not contain StringsMethod Detail |
public boolean accept(File dir, String name)
accept
in class AbstractFileFilter
dir
- the file directoryname
- the filenamepublic boolean accept(File file)
accept
in class AbstractFileFilter
file
- the file to check
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |