int currentYear = now.get(Calendar.YEAR);
FTPFile[] ret = new FTPFile[size];
for (int i = 0; i < size; i++) {
Matcher m = PATTERN.matcher(lines[i]);
if (m.matches()) {
ret[i] = new FTPFile();
// Retrieve the data.
String typeString = m.group(1);
String sizeString = m.group(2);
String monthString = m.group(3);
String dayString = m.group(4);