This filter accepts File s that are files (not directories).
For example, here is how to print out a list of the real files
within the current directory:
File dir = new File(".");
String[] files = dir.list( FileFileFilter.FILE );
for ( int i = 0; i < files.length; i++ ) {
System.out.println(files[i]);
}
|