| 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.pf.file.FileFinder
public class FileFinder
Helper class with convenient methods to find files.
| Constructor Summary | |
|---|---|
protected  | 
FileFinder()
Initialize the new instance with default values.  | 
| Method Summary | |
|---|---|
protected  java.io.File[] | 
collectFiles(java.lang.String dir,
             java.lang.String pattern,
             boolean recursive,
             java.lang.Character digitWildcard)
 | 
 boolean | 
directoryEnd(java.io.File dir)
This method is called for each directory, that a FileWalker finished to walk through.  | 
 boolean | 
directoryStart(java.io.File dir,
               int count)
This method is called for each directory, that a FileWalker starts to walk through.  | 
static java.io.File | 
findFile(java.lang.String filename)
Tries to find the file with the given Name.  | 
static java.io.File | 
findFileOnClasspath(java.lang.String filename)
Tries to find the file with the given Name on the classpath.  | 
static java.io.File[] | 
findFiles(java.lang.String dir,
          java.lang.String pattern)
Return all files that match the given pattern(s) start searching in the specified dir.  | 
static java.io.File[] | 
findFiles(java.lang.String dir,
          java.lang.String pattern,
          boolean recursive)
Return all files that match the given pattern(s) start searching in the specified dir.  | 
static java.io.File[] | 
findFiles(java.lang.String dir,
          java.lang.String pattern,
          boolean recursive,
          char digitWildcard)
Return all files that match the given pattern(s) start searching in the specified dir.  | 
protected  java.util.List | 
getCollectedFiles()
 | 
 boolean | 
handleException(java.lang.Exception ex,
                java.io.File file)
This method is called for whenever an exception occurs in walking through the directories.  | 
 boolean | 
handleFile(java.io.File file)
This method is called for each file, that a FileWalker instance finds.  | 
protected  void | 
setCollectedFiles(java.util.List newValue)
 | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
protected FileFinder()
| Method Detail | 
|---|
protected java.util.List getCollectedFiles()
protected void setCollectedFiles(java.util.List newValue)
public static java.io.File findFileOnClasspath(java.lang.String filename)
public static java.io.File findFile(java.lang.String filename)
public static java.io.File[] findFiles(java.lang.String dir,
                                       java.lang.String pattern)
dir - The directory to start searching (must not be null)pattern - The pattern(s) the filenames must match (must not be null )
java.lang.IllegalArgumentException - If dir or pattern is null
public static java.io.File[] findFiles(java.lang.String dir,
                                       java.lang.String pattern,
                                       boolean recursive)
dir - The directory to start searching (must not be null)pattern - The pattern(s) the filenames must match (must not be null )recursive - If false, only dir is searched, otherwise all sub directories as well
java.lang.IllegalArgumentException - If dir or pattern is null
public static java.io.File[] findFiles(java.lang.String dir,
                                       java.lang.String pattern,
                                       boolean recursive,
                                       char digitWildcard)
dir - The directory to start searching (must not be null)pattern - The pattern(s) the filenames must match (must not be null )recursive - If false, only dir is searched, otherwise all sub directories as welldigitWildcard - The wildcard character for digit representation in the pattern(s)
java.lang.IllegalArgumentException - If dir or pattern is nullpublic boolean handleFile(java.io.File file)
handleFile in interface FileHandlerThe - file, currently found by the FileWalker instance
public boolean handleException(java.lang.Exception ex,
                               java.io.File file)
handleException in interface FileHandlerex - The exception to handleThe - file, currently found by the FileWalker instance
public boolean directoryEnd(java.io.File dir)
directoryEnd in interface FileHandlerdir - The directory, the FileWalker has finished to walk through
public boolean directoryStart(java.io.File dir,
                              int count)
directoryStart in interface FileHandlerdir - The directory, the FileWalker is starting to walk throughcount - The number of files and directories the FileWalker found in the directory
protected java.io.File[] collectFiles(java.lang.String dir,
                                      java.lang.String pattern,
                                      boolean recursive,
                                      java.lang.Character digitWildcard)
  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||