Package cu.ftpd.modules.dirlog

Examples of cu.ftpd.modules.dirlog.Dirlog


    public long totalDirs;
    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.dirlog.Dirlog

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.