public class DateFileFilter extends Object implements FileFilter
FileFilter that accepts Files that were modified after the date that is given in the constructor.| Constructor and Description |
|---|
DateFileFilter(Date d)
Creates an instance that accepts
Files that were modified after d. |
DateFileFilter(int year,
int month,
int dayOfMonth,
int hrs,
int min,
int sec)
Creates an instance that accepts
Files that were modified after the given year, month, ... |
public DateFileFilter(int year,
int month,
int dayOfMonth,
int hrs,
int min,
int sec)
Files that were modified after the given year, month, ... .year - the yearmonth - the monthdayOfMonth - the day of the monthhrs - the hoursmin - the minutessec - the secondsGregorianCalendar.GregorianCalendar(int, int, int, int, int, int)