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 de.fau.osr.util.VisibleFilesTraverser.java

/**
 * Returns all files paths of a given directory
 * but ignores all hidden files and directories
 * and files and directories with certain file names.
 *
 * @author Taleh Didover

From source file it.geosolutions.tools.io.file.Collector.java

/**
 * A collector which wraps the DirectoryWalker to define a Collector which is able to collect
 * (recursively) a set of file starting from a base dir applying a FileFilter
 * 
 * @author Carlo Cancellieri - carlo.cancellieri@geo-solutions.it
 * 

From source file com.mgmtp.perfload.perfalyzer.util.ArchiveExtracter.java

/**
 * Recursively copies or extracts files to a destination directory.
 *
 * @author rnaegele
 */
public class ArchiveExtracter extends DirectoryWalker<File> {

From source file de.alpharogroup.resourcebundle.inspector.search.PropertiesDirectoryWalker.java

/**
 * The Class PropertiesDirectoryWalker finds Properties files.
 */
public class PropertiesDirectoryWalker extends DirectoryWalker<File> {
    private final List<File> files;

From source file com.thoughtworks.go.server.service.lookups.CommandRepositoryDirectoryWalker.java

@Component
public class CommandRepositoryDirectoryWalker extends DirectoryWalker {
    private static final String XML_EXTENSION = "xml";

    private final ServerHealthService serverHealthService;
    private SystemEnvironment systemEnvironment;

From source file org.apache.fop.fonts.autodetect.FontFileFinder.java

/**
 * Helps to autodetect/locate available operating system fonts.
 */
public class FontFileFinder extends DirectoryWalker implements FontFinder {

    /** logging instance */

From source file org.jvnet.hudson.plugins.backup.utils.BackupEngine.java

public class BackupEngine extends DirectoryWalker {
    private BackupLogger logger;
    private File source;
    private int nbFiles = 0;
    private int nbErrors = 0;

From source file org.docx4j.fonts.fop.fonts.autodetect.FontFileFinder.java

/**
 * Helps to autodetect/locate available operating system fonts.
 */
public class FontFileFinder extends DirectoryWalker implements FontFinder {

    /** logging instance */

From source file com.apress.dwrprojects.fileman.FileSystemFunctions.java

/**
 * Class that provides functions for performing various file system operations.
 *
 * @author <a href="mailto:fzammetti@omnytex.com">Frank W. Zammetti</a>.
 */
public class FileSystemFunctions extends DirectoryWalker {

From source file org.skb.util.io.dirwalker.FindPackageDirectories.java

/**
 * Walk a directory and find entries, specifically for the SKB.
 *  
 * @author     Sven van der Meer <sven@vandermeer.de>
 * @version    v1.0.0 build 110901 (01-Sep-11) with Java 1.6
 */