Lucene++ - a full-featured, c++ search engine
API Documentation


Loading...
Searching...
No Matches
IndexFileNameFilter.h
Go to the documentation of this file.
1
2// Copyright (c) 2009-2014 Alan Wright. All rights reserved.
3// Distributable under the terms of either the Apache License (Version 2.0)
4// or the GNU Lesser General Public License.
6
7#ifndef INDEXFILENAMEFILTER_H
8#define INDEXFILENAMEFILTER_H
9
10#include "LuceneObject.h"
11
12namespace Lucene {
13
15class LPPAPI IndexFileNameFilter : public LuceneObject {
16public:
18 static bool accept(const String& directory, const String& name);
19
23 static bool isCFSFile(const String& name);
24
27};
28
29}
30
31#endif
Filename filter that accept filenames and extensions only created by Lucene.
Definition IndexFileNameFilter.h:15
static bool accept(const String &directory, const String &name)
Returns true if this is a file known to be a Lucene index file.
static IndexFileNameFilterPtr getFilter()
Return singleton IndexFileNameFilter.
static bool isCFSFile(const String &name)
Returns true if this is a file that would be contained in a CFS file. This function should only be ca...
Base class for all Lucene classes.
Definition LuceneObject.h:31
Definition AbstractAllTermDocs.h:12
boost::shared_ptr< IndexFileNameFilter > IndexFileNameFilterPtr
Definition LuceneTypes.h:155

clucene.sourceforge.net