first indexing file path field with a untokened indexing field 
Field("filePath", file.getAbsolutePath(), true, true, false)

second , construct a prefix filter for searcher.I wrote a StringFilter.java for match 
and prefix match which can download from:
http://www.chedong.com/tech/lucene_ext.tar.gz

Che , Dong
----- Original Message ----- 
From: "Rob Outar" <[EMAIL PROTECTED]>
To: "Lucene Users List" <[EMAIL PROTECTED]>
Sent: Thursday, October 24, 2002 8:45 PM
Subject: RE: Error when trying to match file path


> Some more information, with the following:
> 
> this.query =
> QueryParser.parse(file.getAbsolutePath(),"path",this.analyzer);
>         System.out.println(this.query.toString("path"));
> I got:
> F:"onesaf dev block b pair dev unittestdatafiles tools unitcomposer.xml"
> 
> So it looks like the Query Parser is stripping out all the "\", and doing
> something with the F:\, would anyone happen to know why this is happening?
> Do I need to use a different query to get the infromation I need?
> 
> Thanks,
> 
> Rob
> 
> -----Original Message-----
> From: Rob Outar [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, October 23, 2002 5:48 PM
> To: [EMAIL PROTECTED]
> Subject: Error when trying to match file path
> 
> 
> Hi all,
> 
> I am indexing the filepath with the below:
> 
>  Document doc = new Document();
>         doc.add(Field.UnIndexed("path", f.getAbsolutePath()));
> 
> I then try to run the following after building the index:
> 
>  this.query =
> QueryParser.parse(file.getAbsolutePath(),"path",this.analyzer);
>         Hits hits = this.searcher.search(this.query);
> 
> It returns zero hits?!?
> 
> What am I doing wrong?
> 
> Any help would be appreciated.
> 
> Thanks,
> 
> Rob
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>


Reply via email to