All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.nlp.util.FilePathProcessor Maven / Gradle / Ivy

Go to download

Stanford Parser processes raw text in English, Chinese, German, Arabic, and French, and extracts constituency parse trees.

There is a newer version: 3.9.2
Show newest version
package edu.stanford.nlp.util;

import edu.stanford.nlp.io.ExtensionFileFilter;

import java.io.File;
import java.io.FileFilter;

/**
 * The FilePathProcessor traverses a directory structure and
 * applies the processFile method to files meeting some
 * criterion.  It is implemented as static methods, not as an extension of
 * File.
 * 

* Note: This is used in our old code in ling/trees, but newer code * should probably use io.FileSequentialCollection * @author Christopher Manning */ public class FilePathProcessor { private FilePathProcessor() { } /** * Apply a method to the files under a given directory and * perhaps its subdirectories. * * @param pathStr file or directory to load from as a String * @param suffix suffix (normally "File extension") of files to load * @param recursively true means descend into subdirectories as well * @param processor The FileProcessor to apply to each * File */ public static void processPath(String pathStr, String suffix, boolean recursively, FileProcessor processor) { processPath(new File(pathStr), new ExtensionFileFilter(suffix, recursively), processor); } /** * Apply a method to the files under a given directory and * perhaps its subdirectories. * * @param path file or directory to load from * @param suffix suffix (normally "File extension") of files to load * @param recursively true means descend into subdirectories as well * @param processor The FileProcessor to apply to each * File */ public static void processPath(File path, String suffix, boolean recursively, FileProcessor processor) { processPath(path, new ExtensionFileFilter(suffix, recursively), processor); } /** * Apply a function to the files under a given directory and * perhaps its subdirectories. If the path is a directory then only * files within the directory (perhaps recursively) that satisfy the * filter are processed. If the pathis a file, then * that file is processed regardless of whether it satisfies the * filter. (This semantics was adopted, since otherwise there was no * easy way to go through all the files in a directory without * descending recursively via the specification of a * FileFilter.) * * @param path file or directory to load from * @param filter a FileFilter of files to load. The filter may be null, * and then all files are processed. * @param processor The FileProcessor to apply to each * File */ public static void processPath(File path, FileFilter filter, FileProcessor processor) { if (path.isDirectory()) { // if path is a directory, look into it File[] directoryListing = path.listFiles(filter); if (directoryListing == null) { throw new IllegalArgumentException("Directory access problem for: " + path); } for (File file : directoryListing) { processPath(file, filter, processor); } } else { // it's already passed the filter or was uniquely specified // if (filter.accept(path)) processor.processFile(path); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy