Examples of 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
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.