--- UnixFTPEntryParser.java Fri Aug 19 22:28:24 2005 +++ UnixFTPEntryParser.new.java Fri Aug 19 22:33:56 2005 @@ -83,9 +83,10 @@ * execution is on * T the 1000 bit is turned on, and execution is off (undefined bit- * state) + * e z/OS external link bit */ private static final String REGEX = - "([bcdlfmpSs-])" + "([bcdelfmpSs-])" +"(((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-]))((r|-)(w|-)([xsStTL-])))\\+?\\s+" + "(\\d+)\\s+" + "(\\S+)\\s+" @@ -181,6 +182,9 @@ case 'd': type = FTPFile.DIRECTORY_TYPE; break; + case 'e': + type = FTPFile.SYMBOLIC_LINK_TYPE; + break; case 'l': type = FTPFile.SYMBOLIC_LINK_TYPE; break;