* @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];
}