Package cu.ftpd.modules.dupecheck

Examples of cu.ftpd.modules.dupecheck.Dupelog


    public long totalFiles;
    private MetadataHandler mh = new MetadataHandler();

    public LogCreator(String dirlogPath, String dupelogPath, boolean append) throws IOException {
        dirlog = new Dirlog(dirlogPath);
        dupelog = new Dupelog(dupelogPath, Integer.MAX_VALUE, false, "*");
        if (append) {
            dirlog.load();
            dupelog.load();
        }
    }
View Full Code Here

TOP

Related Classes of cu.ftpd.modules.dupecheck.Dupelog

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.