Returns a read/write IndexReader reading the index in an FSDirectory in the named path.

Namespace: Lucene.Net.Index
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
[ObsoleteAttribute("Use Open(Directory, bool) instead.This method will be removed in the 3.0 release.")]
public static IndexReader Open(
	FileInfo path
)
Visual Basic
<ObsoleteAttribute("Use Open(Directory, bool) instead.This method will be removed in the 3.0 release.")> _
Public Shared Function Open ( _
	path As FileInfo _
) As IndexReader
Visual C++
[ObsoleteAttribute(L"Use Open(Directory, bool) instead.This method will be removed in the 3.0 release.")]
public:
static IndexReader^ Open(
	FileInfo^ path
)

Parameters

path
Type: System.IO..::..FileInfo
the path to the index directory

Return Value

[Missing <returns> documentation for "M:Lucene.Net.Index.IndexReader.Open(System.IO.FileInfo)"]

See Also