yeah. got the same error message. try adding the apache jakarta commons oro package to the classpath. the error message should go away.
Am Freitag, 4. Februar 2005 23:55 schrieb Jacob, Thomas (Trinity): > Thanks Michael, > > I tried using > > FTPFile f[] = ftp.listFiles(); > > And I am getting this error. > > There is no subdirectory "oro" under org/apache. > > > > java.lang.NoClassDefFoundError: > org/apache/oro/text/regex/MalformedPatternException > at > org.apache.commons.net.ftp.parser.DefaultFTPFileEntryParserFactory.createNTF > TPEntryParser(DefaultFTPFileEntryParserFactory.java:134) > at > org.apache.commons.net.ftp.parser.DefaultFTPFileEntryParserFactory.createFil > eEntryParser(DefaultFTPFileEntryParserFactory.java:95) > at > org.apache.commons.net.ftp.FTPClient.initiateListParsing(FTPClient.java:2327 > ) > at org.apache.commons.net.ftp.FTPClient.listFiles(FTPClient.java:2072) > at org.apache.commons.net.ftp.FTPClient.listFiles(FTPClient.java:2123) > at org.apache.commons.net.ftp.FTPClient.listFiles(FTPClient.java:2167) > at FileMover.main(FileMover.java:129) > Exception in thread "main" > Java Result: 1 > > > > Thanks > Thomas K. Jacob > > -----Original Message----- > From: Mihael Knezevic [mailto:[EMAIL PROTECTED] > Sent: Thursday, February 03, 2005 10:15 PM > To: Jakarta Commons Users List > Subject: Re: NET FTP > > why not work with the listNames() or listFiles() method and work with the > returned array? > > Am Donnerstag, 3. Februar 2005 19:21 schrieb Jacob, Thomas (Trinity): > > Hi > > I am using FTPclasses. > > And to get the list of files in a path with wildchar characters, I am > > using the listFiles(String) function > > > > When I give ftpclient.listFiles("*.zip") it gives me the list of .zip > > files in that directory in FTP server. THis works fine. But this is > > case sensitive. For example, if the file has a .ZIP file extension, it > > does not return the file name. > > > > If the file name comparison can be made case insensitive, it would be > > great, may be with an additional parameter to indicate that it is case > insensitive. > > > > If you can show me which function to modify in the source, then I can > > make changes in the source to do a string compare case insensitive or > > after doing toUpper on both the file name and the wild char string. > > > > Thanks > > > > > > Thomas K. Jacob > > > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
