edu.illinois.cs.cogcomp.core.io.IOUtils.lsFilesRecursive()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(11.4k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中edu.illinois.cs.cogcomp.core.io.IOUtils.lsFilesRecursive()方法的一些代码示例,展示了IOUtils.lsFilesRecursive()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IOUtils.lsFilesRecursive()方法的具体详情如下:
包路径:edu.illinois.cs.cogcomp.core.io.IOUtils
类名称:IOUtils
方法名:lsFilesRecursive

IOUtils.lsFilesRecursive介绍

[英]Filters the files contained in a directory or in its subdirectory structure. Returns all files (not directories) that pass the filter.
[中]筛选目录或其子目录结构中包含的文件。返回通过筛选的所有文件(不是目录)。

代码示例

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * Recursively reads all documents with .xml extension in the source directory
  3. */
  4. @Override
  5. public List<List<Path>> getFileListing() throws IOException {
  6. List<List<Path>> fileList = new ArrayList<>();
  7. String[] xmlDocs = IOUtils.lsFilesRecursive(sourceDirectory, new FileFilter() {
  8. @Override
  9. public boolean accept(File f) {
  10. return f.getName().endsWith(EXT_XML) || f.isDirectory();
  11. }
  12. });
  13. for (String doc : xmlDocs) {
  14. List<Path> docFile = new ArrayList<>();
  15. Path docPath = Paths.get(doc);
  16. docFile.add(docPath);
  17. fileList.add(docFile);
  18. }
  19. return fileList;
  20. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. /**
  2. * Recursively reads all documents with .xml extension in the source directory
  3. */
  4. @Override
  5. public List<List<Path>> getFileListing() throws IOException {
  6. List<List<Path>> fileList = new ArrayList<>();
  7. String[] xmlDocs = IOUtils.lsFilesRecursive(sourceDirectory, new FileFilter() {
  8. @Override
  9. public boolean accept(File f) {
  10. return f.getName().endsWith(EXT_XML) || f.isDirectory();
  11. }
  12. });
  13. for (String doc : xmlDocs) {
  14. List<Path> docFile = new ArrayList<>();
  15. Path docPath = Paths.get(doc);
  16. docFile.add(docPath);
  17. fileList.add(docFile);
  18. }
  19. return fileList;
  20. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * Filters the files contained in a directory or in its subdirectory structure. Returns all
  3. * files (not directories) that pass the filter.
  4. */
  5. public static String[] lsFilesRecursive(String directory, FileFilter filter)
  6. throws IOException {
  7. File dir = new File(directory);
  8. ArrayList<String> files = new ArrayList<>();
  9. for (File filepath : dir.listFiles(filter)) {
  10. if (filepath.isFile())
  11. files.add(filepath.getAbsolutePath());
  12. else if (filepath.isDirectory())
  13. files.addAll(Arrays.asList(lsFilesRecursive(filepath.getAbsolutePath(), filter)));
  14. }
  15. return files.toArray(new String[files.size()]);
  16. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-core-utilities

  1. /**
  2. * Filters the files contained in a directory or in its subdirectory structure. Returns all
  3. * files (not directories) that pass the filter.
  4. */
  5. public static String[] lsFilesRecursive(String directory, FileFilter filter)
  6. throws IOException {
  7. File dir = new File(directory);
  8. ArrayList<String> files = new ArrayList<>();
  9. for (File filepath : dir.listFiles(filter)) {
  10. if (filepath.isFile())
  11. files.add(filepath.getAbsolutePath());
  12. else if (filepath.isDirectory())
  13. files.addAll(Arrays.asList(lsFilesRecursive(filepath.getAbsolutePath(), filter)));
  14. }
  15. return files.toArray(new String[files.size()]);
  16. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * Filters the files contained in a directory or in its subdirectory structure. Returns all
  3. * files (not directories) that pass the filter.
  4. */
  5. public static String[] lsFilesRecursive(String directory, FilenameFilter filter)
  6. throws IOException {
  7. File dir = new File(directory);
  8. ArrayList<String> files = new ArrayList<>();
  9. for (File filepath : dir.listFiles(filter)) {
  10. if (isFile(filepath.getAbsolutePath()))
  11. files.add(filepath.getAbsolutePath());
  12. else if (isDirectory(filepath.getAbsolutePath()))
  13. files.addAll(Arrays.asList(lsFilesRecursive(filepath.getAbsolutePath(), filter)));
  14. }
  15. return files.toArray(new String[files.size()]);
  16. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-core-utilities

  1. /**
  2. * Filters the files contained in a directory or in its subdirectory structure. Returns all
  3. * files (not directories) that pass the filter.
  4. */
  5. public static String[] lsFilesRecursive(String directory, FilenameFilter filter)
  6. throws IOException {
  7. File dir = new File(directory);
  8. ArrayList<String> files = new ArrayList<>();
  9. for (File filepath : dir.listFiles(filter)) {
  10. if (isFile(filepath.getAbsolutePath()))
  11. files.add(filepath.getAbsolutePath());
  12. else if (isDirectory(filepath.getAbsolutePath()))
  13. files.addAll(Arrays.asList(lsFilesRecursive(filepath.getAbsolutePath(), filter)));
  14. }
  15. return files.toArray(new String[files.size()]);
  16. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * generate a list of files comprising the corpus. Each is expected to generate one or more
  3. * TextAnnotation objects, though the way the iterator is implemented allows for corpus files to
  4. * generate zero TextAnnotations if you are feeling picky.
  5. *
  6. * @return a list of Path objects corresponding to files containing corpus documents to process.
  7. */
  8. @Override
  9. public List<List<Path>> getFileListing() throws IOException {
  10. FilenameFilter filter = new FilenameFilter() {
  11. @Override
  12. public boolean accept(File dir, String name) {
  13. return name.endsWith(getRequiredFileExtension());
  14. }
  15. };
  16. String[] fileList = IOUtils.lsFilesRecursive(super.getSourceDirectory(), filter);
  17. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  18. for (String file : fileList)
  19. pathList.add(Collections.singletonList(Paths.get(file)));
  20. return pathList;
  21. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. /**
  2. * generate a list of files comprising the corpus. Each is expected to generate one or more
  3. * TextAnnotation objects, though the way the iterator is implemented allows for corpus files to
  4. * generate zero TextAnnotations if you are feeling picky.
  5. *
  6. * @return a list of Path objects corresponding to files containing corpus documents to process.
  7. */
  8. @Override
  9. public List<List<Path>> getFileListing() throws IOException {
  10. FilenameFilter filter = new FilenameFilter() {
  11. @Override
  12. public boolean accept(File dir, String name) {
  13. return name.endsWith(getRequiredFileExtension());
  14. }
  15. };
  16. String[] fileList = IOUtils.lsFilesRecursive(super.getSourceDirectory(), filter);
  17. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  18. for (String file : fileList)
  19. pathList.add(Collections.singletonList(Paths.get(file)));
  20. return pathList;
  21. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * generate a list of lists of files comprising the corpus. Each entry is expected to generate one or more
  3. * TextAnnotation objects, though the way the iterator is implemented allows for corpus files to
  4. * generate zero TextAnnotations if you are feeling picky. Each entry in the list is itself a list in
  5. * which the first file contains the source document. If that file does not also contain the annotation
  6. * info, the remaining entries in the list name the file(s) containing the annotation markup.
  7. *
  8. * The default implementation assumes only a single self-contained file is provided for each document.
  9. *
  10. * @return a List of Lists of Path objects, each containing a source file and corresponding markup files.
  11. */
  12. @Override
  13. public List<List<Path>> getFileListing() throws IOException {
  14. FilenameFilter filter = new FilenameFilter() {
  15. @Override
  16. public boolean accept(File dir, String name) {
  17. return name.endsWith(getRequiredSourceFileExtension());
  18. }
  19. };
  20. String[] fileList = IOUtils.lsFilesRecursive(super.getSourceDirectory(), filter);
  21. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  22. for (String file : fileList)
  23. pathList.add(Collections.singletonList(Paths.get(file)));
  24. return pathList;
  25. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. /**
  2. * generate a list of lists of files comprising the corpus. Each entry is expected to generate one or more
  3. * TextAnnotation objects, though the way the iterator is implemented allows for corpus files to
  4. * generate zero TextAnnotations if you are feeling picky. Each entry in the list is itself a list in
  5. * which the first file contains the source document. If that file does not also contain the annotation
  6. * info, the remaining entries in the list name the file(s) containing the annotation markup.
  7. *
  8. * The default implementation assumes only a single self-contained file is provided for each document.
  9. *
  10. * @return a List of Lists of Path objects, each containing a source file and corresponding markup files.
  11. */
  12. @Override
  13. public List<List<Path>> getFileListing() throws IOException {
  14. FilenameFilter filter = new FilenameFilter() {
  15. @Override
  16. public boolean accept(File dir, String name) {
  17. return name.endsWith(getRequiredSourceFileExtension());
  18. }
  19. };
  20. String[] fileList = IOUtils.lsFilesRecursive(super.getSourceDirectory(), filter);
  21. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  22. for (String file : fileList)
  23. pathList.add(Collections.singletonList(Paths.get(file)));
  24. return pathList;
  25. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * This is overridden to handle the multiple subdirectories of the TAC KBP data.
  3. *
  4. * @return a list of lists of paths: each element is a singleton list containing a TAC source file
  5. * @throws IOException if the paths are not specified correctly, causing failure to read
  6. * files expected to be present
  7. */
  8. @Override
  9. public List<List<Path>> getFileListing() throws IOException {
  10. String sourceDir = resourceManager.getString(CorpusReaderConfigurator.SOURCE_DIRECTORY);
  11. List<List<Path>> corpusPaths = new ArrayList<>();
  12. for (String st : SOURCE_TYPES) {
  13. String dir = sourceDir + "/" + st;
  14. FilenameFilter filter = new FilenameFilter() {
  15. @Override
  16. public boolean accept(File dir, String name) {
  17. return name.endsWith(getRequiredSourceFileExtension());
  18. }
  19. };
  20. String[] fileList = IOUtils.lsFilesRecursive(dir, filter);
  21. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  22. for (String file : fileList)
  23. pathList.add(Collections.singletonList(Paths.get(file)));
  24. corpusPaths.addAll(pathList);
  25. }
  26. return corpusPaths;
  27. }
  28. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. /**
  2. * This is overridden to handle the multiple subdirectories of the TAC KBP data.
  3. *
  4. * @return a list of lists of paths: each element is a singleton list containing a TAC source file
  5. * @throws IOException if the paths are not specified correctly, causing failure to read
  6. * files expected to be present
  7. */
  8. @Override
  9. public List<List<Path>> getFileListing() throws IOException {
  10. String sourceDir = resourceManager.getString(CorpusReaderConfigurator.SOURCE_DIRECTORY);
  11. List<List<Path>> corpusPaths = new ArrayList<>();
  12. for (String st : SOURCE_TYPES) {
  13. String dir = sourceDir + "/" + st;
  14. FilenameFilter filter = new FilenameFilter() {
  15. @Override
  16. public boolean accept(File dir, String name) {
  17. return name.endsWith(getRequiredSourceFileExtension());
  18. }
  19. };
  20. String[] fileList = IOUtils.lsFilesRecursive(dir, filter);
  21. List<List<Path>> pathList = new ArrayList<>(fileList.length);
  22. for (String file : fileList)
  23. pathList.add(Collections.singletonList(Paths.get(file)));
  24. corpusPaths.addAll(pathList);
  25. }
  26. return corpusPaths;
  27. }
  28. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. sourceFiles = IOUtils.lsFilesRecursive(corpusDirectory, file ->
  2. file.isDirectory() || file.getAbsolutePath().endsWith(fileExtension));
  3. } catch (IOException e) {

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. File sectionDir = new File(this.aceCorpusHome + File.separator + section);
  2. String[] xmlFiles = IOUtils.lsFilesRecursive(sectionDir.getAbsolutePath(), apfFileFilter);

代码示例来源:origin: CogComp/cogcomp-nlp

  1. File sectionDir = new File(this.aceCorpusHome + File.separator + section);
  2. String[] xmlFiles = IOUtils.lsFilesRecursive(sectionDir.getAbsolutePath(), apfFileFilter);

代码示例来源:origin: CogComp/cogcomp-nlp

  1. String[] files = IOUtils.lsFilesRecursive(dataDirectory.toString(), filter);

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-nlp-pipeline

  1. String[] files = IOUtils.lsFilesRecursive(dataDirectory.toString(), filter);

代码示例来源:origin: CogComp/cogcomp-nlp

  1. String[] inFiles = IOUtils.lsFilesRecursive(inDir, filter);

代码示例来源:origin: CogComp/cogcomp-nlp

  1. List<String> sourceFileList = Arrays.asList(IOUtils.lsFilesRecursive(sourceDir, sourceFilter));
  2. LinkedList<String> annotationFileList = new LinkedList<>();
  3. annotationFileList.addAll(Arrays.stream(IOUtils.lsFilesRecursive(annotationDir, annotationFilter)).map(IOUtils::getFileName).collect(Collectors.toList()));

代码示例来源:origin: edu.illinois.cs.cogcomp/md

  1. File sectionDir = new File(this.aceCorpusHome + File.separator + section);
  2. String[] xmlFiles = IOUtils.lsFilesRecursive(sectionDir.getAbsolutePath(), apfFileFilter);

相关文章