Home | History | Annotate | Download | only in io

Lines Matching refs:walk

61  *      walk(startDirectory, results);
161 * <li>The <code>walk()</code> method traps thrown {@link CancelException}
193 * will cause the walk to stop immediately. The <code>handleCancelled()</code>
258 * The limit on the directory depth to walk.
273 * part of the walk. The {@link FileFilterUtils} class is useful for combining
291 * of the walk. This constructor uses {@link FileFilterUtils#makeDirectoryOnly(IOFileFilter)}
320 * Writers of subclasses should call this method to start the directory walk.
329 protected final void walk(File startDirectory, Collection results) throws IOException {
335 walk(startDirectory, 0, results);
350 private void walk(File directory, int depth, Collection results) throws IOException {
364 walk(childFile, childDepth, results);
380 * Checks whether the walk has been cancelled by calling {@link #handleIsCancelled},
384 * automatically by the walk of the tree. However, sometimes a single method,
400 * Overridable callback method invoked to determine if the entire walk
423 * If this method returns true, then the directory walk is immediately
431 * @return true if the walk has been cancelled
447 * @param startDirectory the directory that the walk started from