Package net.sourceforge.processdash.util

Examples of net.sourceforge.processdash.util.TempFileFactory$DirectoryDeletionShutdownHook


        File baseDir = new File(basePath);
        if (!baseDir.isDirectory())
            throw new IOException("Directory does not exist: " + basePath);

        TempFileFactory tff = new TempFileFactory();
        tff.setTempDirectory(baseDir);
        tff.setMaxAgeDays(1);
        File result = tff.createTempDirectory("dirArchive_", ".tmp");
        return result;
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.util.TempFileFactory$DirectoryDeletionShutdownHook

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.