Returns the directory instance for the named location.

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

Syntax

C#
[ObsoleteAttribute("Use IndexWriter's create flag, instead, to create a new index.")]
public static FSDirectory GetDirectory(
	DirectoryInfo file,
	bool create
)
Visual Basic
<ObsoleteAttribute("Use IndexWriter's create flag, instead, to create a new index.")> _
Public Shared Function GetDirectory ( _
	file As DirectoryInfo, _
	create As Boolean _
) As FSDirectory
Visual C++
[ObsoleteAttribute(L"Use IndexWriter's create flag, instead, to create a new index.")]
public:
static FSDirectory^ GetDirectory(
	DirectoryInfo^ file, 
	bool create
)

Parameters

file
Type: System.IO..::..DirectoryInfo
the path to the directory.
create
Type: System..::..Boolean
if true, create, or erase any existing contents.

Return Value

the FSDirectory for the named file.

See Also