public class PrefixFileFilter extends AbstractFileFilter
For example, to print all files and directories in the
current directory whose name starts with Test:
File dir = new File(".");
String[] files = dir.list( new PrefixFileFilter("Test") );
for ( int i = 0; i < files.length; i++ ) {
System.out.println(files[i]);
}
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String[] |
prefixes
The filename prefixes to search for
|
| Constructor and Description |
|---|
PrefixFileFilter(java.util.List prefixes)
Constructs a new Prefix file filter for a list of prefixes.
|
PrefixFileFilter(java.lang.String prefix)
Constructs a new Prefix file filter for a single prefix.
|
PrefixFileFilter(java.lang.String[] prefixes)
Constructs a new Prefix file filter for any of an array of prefixes.
|
public PrefixFileFilter(java.lang.String prefix)
prefix - the prefix to allow, must not be nulljava.lang.IllegalArgumentException - if the prefix is nullpublic PrefixFileFilter(java.lang.String[] prefixes)
The array is not cloned, so could be changed after constructing the instance. This would be inadvisable however.
prefixes - the prefixes to allow, must not be nulljava.lang.IllegalArgumentException - if the prefix array is nullpublic PrefixFileFilter(java.util.List prefixes)
prefixes - the prefixes to allow, must not be nulljava.lang.IllegalArgumentException - if the prefix list is nulljava.lang.ClassCastException - if the list does not contain Stringspublic boolean accept(java.io.File file)
accept in interface java.io.FileFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the File to checkpublic boolean accept(java.io.File file,
java.lang.String name)
accept in interface java.io.FilenameFilteraccept in interface IOFileFilteraccept in class AbstractFileFilterfile - the File directoryname - the filename