Hi Kostas,

I am assuming you need to find all of the text files in the directory.
Assuming you're using JDK1.5 you need to do something like this:

File directory = new File("c:\my\directory");
FilenameFilter findTextFiles = new FilenameFilter() {
        public boolean accept(File dir, String name)
        {
                return name.endsWith(".txt");
        }
}
for( File indexFile : directory.listFiles(findTextFiles) )
{
        ...do Lucene indexing
}

If you are using JDK1.5 you can do the same using normal for loops.

Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to