Package ca.pgon.helpers.filefilters

Examples of ca.pgon.helpers.filefilters.DirectoriesFileFilter


   * @return the list of sub-directories names
   */
  public static List<String> listSubDirectoriesName(File directory) {
    List<String> result = new ArrayList<String>();

    File[] files = directory.listFiles(new DirectoriesFileFilter());
    for (File file : files) {
      result.add(file.getName());
    }

    Collections.sort(result);
View Full Code Here


   * @return the list of sub-directories names
   */
  public static List<String> listSubDirectoriesName(File directory) {
    List<String> result = new ArrayList<String>();

    File[] files = directory.listFiles(new DirectoriesFileFilter());
    for (File file : files) {
      result.add(file.getName());
    }

    Collections.sort(result);
View Full Code Here

TOP

Related Classes of ca.pgon.helpers.filefilters.DirectoriesFileFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.