Package com.cdoogle.main

Source Code of com.cdoogle.main.CoogleD

package com.cdoogle.main;

import java.io.File;
import com.cdoogle.control.MyInitializer;
import com.cdoogle.filehandlers.LoadFiles;

public class CoogleD {

  /**
   * @param args
   */
 
  public static String path="\\F:\\MyDir";
 
 
  public static void main(String[] args) {
   
   
    //To get the required system properties.
    //SystemProperties.getProperties();
   
    MyInitializer init = new MyInitializer();
   
    LoadFiles loader = new LoadFiles();
    try
    {
    loader.loadFiles(new File(path));
    System.out.println("Total no. of files are "+LoadFiles.totalFiles);
    }
    catch(Exception e)
    {
    System.out.println(e)
    }
   
   
  }

}
TOP

Related Classes of com.cdoogle.main.CoogleD

TOP
Copyright © 2018 www.massapi.com. 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.