Package org.jitterbit.util.file

Examples of org.jitterbit.util.file.ModifiedDateFilter


     * @return an array of the requested <code>File</code>s. An empty array is returned if there are
     *         no (matching) files.
     */
    public final File[] listFilesFromModifiedDate(Date startDate, Date endDate) {
        if (root.exists() && root.isDirectory()) {
            return root.listFiles(new ModifiedDateFilter(startDate, endDate));
        }
        return new File[0];
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.util.file.ModifiedDateFilter

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.