// name of file or dir - use the raw string to get
// spaces etc
int pos = raw.indexOf(fields[3]);
if (pos > 0) {
String name = raw.substring(pos);
return new FTPFile(FTPFile.WINDOWS, raw, name.toString(), size, isDir, lastModified);
}
throw new ParseException("Failed to retrieve name: " + raw, 0);
}