Example usage for org.apache.commons.io DirectoryWalker subclass-usage

List of usage examples for org.apache.commons.io DirectoryWalker subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.io DirectoryWalker subclass-usage.

Usage

From source file org.pitest.support.DirectoriesOnlyWalker.java

/**
 * Builds a list of all directories contained within a provided directory.  The starting directory is also contained 
 * within the list of directories. <br /><br />
 * 
 * <code>
 * DirectoriesOnlyWalker walker = new DirectoriesOnlyWalker(); <br />

From source file org.robotframework.jvmconnector.agent.JarFinder.java

public class JarFinder extends DirectoryWalker {
    private final File path;

    public JarFinder(String path) {
        this.path = new File(path);
    }

From source file org.robotframework.remoteapplications.agent.JarFinder.java

public class JarFinder extends DirectoryWalker {
    private final File path;

    public JarFinder(String path) {
        this.path = new File(path);
    }

From source file org.codehaus.mojo.webtest.components.ReportCollector.java

/**
 * Collects all the webtest reports of single tests.
 */
public class ReportCollector extends DirectoryWalker {
    /**
     * the name of the files to be collected

From source file net.orpiske.ssps.common.groovy.GroovyClasspathWalker.java

/**
 * Recursively adds jars or files to the groovy classpath
 */
public class GroovyClasspathWalker extends DirectoryWalker {

    private static Logger logger = Logger.getLogger(GroovyClasspathWalker.class);

From source file net.orpiske.sdm.lib.io.support.ShieldAwareCopier.java

/**
 * Implements a recursive directory copier that respect shielded files
 * @author Otavio R. Piske <angusyoung@gmail.com>
 *
 */
@SuppressWarnings("rawtypes")

From source file org.universAAL.support.directives.util.SourceExplorer.java

public class SourceExplorer extends DirectoryWalker {

    private SourceChecker sc;

    public SourceExplorer(SourceChecker sourceTest) {
        sc = sourceTest;

From source file com.rabidgremlin.legalbeagle.util.FileCollector.java

public class FileCollector extends DirectoryWalker<File> {

    public FileCollector() {
        super();
    }

From source file org.kuali.ole.sys.batch.FilePurgeDirectoryWalker.java

/**
 * A directory walker which finds files to purge; it's relatively simple, simply adding a file to
 * the given results if the IOFileMatcher has matched it
 */
public class FilePurgeDirectoryWalker extends DirectoryWalker {
    private org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(this.getClass());

From source file com.blackducksoftware.ohcount4j.FileFinder.java

public class FileFinder extends DirectoryWalker<File> {

    protected ArrayList<File> results;

    private boolean processSymbolicLinks;