| |
|
| java.lang.Object makedep.DirectoryTree
DirectoryTree | public class DirectoryTree (Code) | | |
DirectoryTree | public DirectoryTree()(Code) | | |
DirectoryTree | public DirectoryTree(String baseDirectory)(Code) | | Takes an absolute path to the root directory of this
DirectoryTree. Throws IllegalArgumentException if the given
string represents a plain file or nonexistent directory.
|
addSubdirToIgnore | public void addSubdirToIgnore(String subdir)(Code) | | |
findFile | public List findFile(String name)(Code) | | Queries the DirectoryTree for a file or directory name. Takes
only the name of the file or directory itself (i.e., no parent
directory information should be in the passed name). Returns a
List of DirectoryTreeNodes specifying the full paths of all of
the files or directories of this name in the DirectoryTree.
Returns null if the directory tree has not been read from disk
yet or if the file was not found in the tree.
|
getVerbose | public boolean getVerbose()(Code) | | |
readDirectory | public void readDirectory(String baseDirectory) throws IllegalArgumentException(Code) | | Takes an absolute path to the root directory of this
DirectoryTree. Throws IllegalArgumentException if the given
string represents a plain file or nonexistent directory.
|
setVerbose | public void setVerbose(boolean newValue)(Code) | | Output "."'s to System.out as directories are read. Defaults
to false.
|
|
|
|