LocalDate start = end.minusYears(1);
List<File> result = new ArrayList<File>();
IPath[] storagePaths = XmlPlugin.getDefault().getStoragePaths();
MutableDateTime date = start.toDateTime(new LocalTime(0, 0, 0)).toMutableDateTime();
while (new LocalDate(date.toInstant().getMillis()).compareTo(end) <= 0) {
for (IPath path : storagePaths) {
File f = store.getDataFile(new LocalDate(date.getMillis()), path);
if (f.exists()) {
result.add(f);