Package org.sf.mustru.utils

Examples of org.sf.mustru.utils.DirTools


    {
     tfile = new RandomAccessFile(taskFile, "rw");
     tfile.setLength(0); tfile.close();

     // *-- Run the directory scan for each directory in the list
     DirTools dirTools = new DirTools();
     for (int i = 0; i < incDirs.length; i++)
      { logger.info("Start scanning " + incDirs[i]);
        dirTools.dirScan(incDirs[i], filtersFile, taskFile, skipHidden, followLinks);
        logger.info("Finished scanning " + incDirs[i]);
      }

     // *-- Read the task file into a hashset and remove dups.
     logger.info("Removing duplicate file names from task file");
View Full Code Here

TOP

Related Classes of org.sf.mustru.utils.DirTools

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.