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.discosync.scanner.FileCheckSyncInfoScanner.java

public class FileCheckSyncInfoScanner extends DirectoryWalker {

    Adler32 adlerChecksum = new Adler32();

    String baseDir = null;
    int baseDirLength = -1;

From source file com.thoughtworks.go.domain.materials.tfs.TfsAssertionsDirectoryWalker.java

class TfsAssertionsDirectoryWalker extends DirectoryWalker {

    private final List<String> files;
    private final List<String> excludeFiles;
    private final List<String> directories;
    private final String fileContents;

From source file org.ow2.mind.doc.DefinitionTreeDocumentationGenerator.java

public class DefinitionTreeDocumentationGenerator extends DirectoryWalker {
    private final File sourceDirectories[];

    public DefinitionTreeDocumentationGenerator(final File sourceDirectories[]) {
        super(FileFilterUtils.trueFileFilter(), FileFilterUtils.orFileFilter(
                FileFilterUtils.suffixFileFilter(".adl"), FileFilterUtils.suffixFileFilter(".itf")), -1);

From source file org.discosync.scanner.FileCreateSyncInfoScanner.java

public class FileCreateSyncInfoScanner extends DirectoryWalker {

    protected Adler32 adlerChecksum = new Adler32();

    protected String baseDir = null;
    protected int baseDirLength = -1;

From source file net.orpiske.ssps.common.archive.RecursiveArchiver.java

/**
 * This class implements a recursive archiving functionality. It navigates 
 * through directories and sub-directories and adds then to an archive.
 * 
 * @author Otavio R. Piske <angusyoung@gmail.com>
 */

From source file org.kuali.kfs.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 gov.nasa.ensemble.common.EnsembleDirectoryWalker.java

/**
 * Utility made for streaming files into a queue as they are discovered on the filesystem.
 * 
 * @author mpowell
 * 
 */

From source file edu.lternet.pasta.portal.DesktopCleaner.java

/**
 * The DesktopCleaner class cleans data files that have passed their
 * expiration date from the desktop data directory tree.
 * 
 * @author dcosta
 *

From source file edu.lternet.pasta.portal.HarvestReportCleaner.java

/**
 * The HarvestReportCleaner class cleans harvest report files that have passed their
 * expiration date from the harvest report directory tree.
 * 
 * @author dcosta
 *

From source file net.orpiske.ssps.common.repository.search.RepositoryWalker.java

/**
 * Walks through the repository
 * @author Otavio R. Piske <angusyoung@gmail.com>
 *
 */
@SuppressWarnings("rawtypes")